1
class Graph 
{
    protected $_len = 0;
    protected $_g = array();
    protected $_visited = array();

    public function __construct()
    {
        $this->_g = array(
            array(0, 0, 0, 1, 0, 0 ,0),
            array(1, 0, 0, 0, 0, 0 ,0),
            array(1, 0, 0, 0, 0, 0 ,0),
            array(0, 0, 0, 0, 1, 1 ,0),
            array(0, 0, 0, 0, 0, 0 ,1),
            array(0, 0, 0, 0, 0, 0 ,1),
            array(0, 0, 0, 0, 0, 0 ,0),
        );

        $this->_len = count($this->_g);

        $this->_initVisited();
    }

    protected function _initVisited()
    {
        for ($i = 0; $i < $this->_len; $i++) {
            $this->_visited[$i] = 0;
        }
    }

    public function depthFirst($vertex)
    {
        $this->_visited[$vertex] = 1;
        echo $vertex . "\n";
        for ($i = 0; $i < $this->_len; $i++) {
            if ($this->_g[$vertex][$i] == 1 && !$this->_visited[$i]) {
                $this->depthFirst($i);
            }
        }
    }
}

$g = new Graph();
$g->depthFirst(1);

我想找到这个图的拓扑顺序输出是1 0 3 4 6 5。它缺少数字2。在这种情况下,图中有两个起点。点点(1,0)滴滴(2,0)

我该如何解决这个问题?

4

0 回答 0