Пример #1
0
 public DepthFirstSearch(Graph g, int s)
 {
     Marked = new bool[g.V];
     Count  = 0;
     Dfs(g, s);
 }