dthy81285 2015-07-30 16:39
浏览 92

使用php生成随机网络图

I'd like to know how to generate random network graphs with a specific number of nodes and edges in PHP. I've scoured the web tirelessly and even came across this SO question but the answers were for Javascript only.
I also saw this SO question but it was for Java and I'm really not a PHP expert to recreate that solution using PHP.

I'd later visualize the graph using GraphViz if that makes the question a little bit clearer.

  • 写回答

1条回答 默认 最新

  • doujianzhi3358 2015-08-19 14:19
    关注

    Okay, so I saw this solution somewhere but can't lay my hands on the link

    This is the code;

     <?php
    
    $maxNode = 100;
    $maxEdge = 500;
    //generate random edges
    
    $e =[];
    for ($n=1; $n <= $maxEdge; $n++) { 
    
        $e[] = [rand(1, $maxNode), rand(1, $maxNode)];
    }
    
    //remove duplicates and self-loops
    
    $dup = [];
    foreach ($e as $i => $v) {
    
        if ($v[0] == $v[1]) {
            unset($e[$i]);
        }
    
        $d = $v[0] .':' .$v[1];
        if (isset($dup[$d])) {
    
            unset($e[$i]);
        }
    
        else{
            $dup[$d] = true;
        }
    }
    
    
    
    
    $graph = <<<EOF
    digraph randomGraph {
    
        graph [ dpi = 300 ];
        size ="5,8"
        node [shape = circle];
    
    EOF;
    
        foreach ($e as $edge) {
    
            list($from, $to) = $edge;
            $graph .= "$from -> $to 
    ";
    
        }
    
        echo $graph;
    ?>
    

    Credit to whoever wrote this!

    评论

报告相同问题?

悬赏问题

  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥16 mybatis的代理对象无法通过@Autowired装填
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂
  • ¥15 wordpress 产品图片 GIF 没法显示
  • ¥15 求三国群英传pl国战时间的修改方法
  • ¥15 matlab代码代写,需写出详细代码,代价私
  • ¥15 ROS系统搭建请教(跨境电商用途)
  • ¥15 AIC3204的示例代码有吗,想用AIC3204测量血氧,找不到相关的代码。