예제 #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;
 }