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
。この場合、グラフには 2 つの開始点があります。ポイント(1,0)
とポイント(2,0)
どうすれば問題を解決できますか?