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运行显示错误,如何解决?
  • ¥15 c++头文件不能识别CDialog
  • ¥15 Excel发现不可读取的内容
  • ¥15 UE5#if WITH_EDITOR导致打包的功能不可用
  • ¥15 关于#stm32#的问题:CANOpen的PDO同步传输问题
  • ¥20 yolov5自定义Prune报错,如何解决?
  • ¥15 电磁场的matlab仿真
  • ¥15 mars2d在vue3中的引入问题
  • ¥50 h5唤醒支付宝并跳转至向小荷包转账界面
  • ¥15 算法题:数的划分,用记忆化DFS做WA求调