예제 #1
0
 public DirectedDfs(Digraph g, int s)
 {
     marked = new bool[g.Vcount];
     Dfs(g, s);
 }