Exemplo n.º 1
0
 public DirectedDfs(DirectedGraph g, int s)
 {
     marked = new bool[g.VertexSize];
     Dfs(g, s);
 }