示例#1
0
文件: Program.cs 项目: Vet0353/TIMP2
 static void Main(string[] args)
 {
     GraphI graph = new GraphI(new dfs());
 }
示例#2
0
 public GraphIterator(GraphI graph)
 {
     this.graph = graph;
     current    = this.graph.Head;
 }