日期:2011-12-12 浏览次数:20444 次
- <?php
- //调用
- require 'alGraph.php';
- $a = array('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j');
- $b = array('ab', 'bc', 'be', 'cd', 'df', 'fg', 'gh', 'ga', 'hj', 'gi');
- $test = new ALGraph($a, $b);
- print_r($test->bfs());
- ?>
- alGraph.php
- <?php
- //顶点类
- class Vex{
- private $data;
- private $headLink;
- public function Vex($data, $headLink = NULL){
- $this->data = $data;
- $this->headLink = $headLink;
- }
- public function getData(){
-