コード例 #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;
 }