-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectedDFS.java
42 lines (35 loc) · 877 Bytes
/
DirectedDFS.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import edu.princeton.cs.algs4.*;
public class DirectedDFS{
private boolean[] marked;
public DirectedDFS(Digraph G, int s){
marked = new boolean[G.V()];
dfs(G, s);
}
public DirectedDFS(Digraph G, Iterable<Integer> sources){
marked = new boolean[G.V()];
for(int s : sources){
if(!marked[s]) dfs(G, s);
}
}
private void dfs(Digraph G, int v){
marked[v] = true;
for(int w : G.adj(v)){
if(!marked[w]) dfs(G, w);
}
}
public boolean marked(int w){
return marked[w];
}
public static void main(String[] args){
Digraph G = new Digraph(new In(args[0]));
Bag<Integer> sources = new Bag<>();
for(int i = 1; i < args.length; i++){
sources.add(Integer.parseInt(args[i]));
}
DirectedDFS reachable = new DirectedDFS(G, sources);
for(int v = 0; v<G.V(); v++){
if(reachable.marked(v)) StdOut.print(v + " ");
}
StdOut.println();
}
}