Beispiel #1
0
 public DigraphDfs(Digraph g, int s)
 {
     _s      = s;
     _marked = new bool[g.V];
     Dfs(g, s);
 }