-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathTopologicalSorting_using_DFS.java
98 lines (85 loc) · 2.57 KB
/
TopologicalSorting_using_DFS.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/*
* @Topological Sorting
* Directed Acyclic Graph(DAG) is a directed graph with no cycles.
* Topological sorting is used only for DAGs (not for non-DAGs)
* It is a linear order of vertices such that every directed edge u -> v,
* the vertex u comes before c in the order.
*
*/
import java.util.ArrayList;
import java.util.Stack;
public class TopologicalSorting_using_DFS {
static class Edge {
int src;
int dest;
Edge(int src, int dest) {
this.src = src;
this.dest = dest;
}
}
public static void createGraph(ArrayList<Edge> graph[]) {
for (int i = 0; i < graph.length; i++) {
graph[i] = new ArrayList<>();
}
// 2 Edge
graph[2].add(new Edge(2, 3));
// 3 Edge
graph[3].add(new Edge(3, 1));
// 4 Edge
graph[4].add(new Edge(4, 0));
graph[4].add(new Edge(4, 1));
// 5 Edge
graph[5].add(new Edge(5, 0));
graph[5].add(new Edge(5, 2));
}
public static void dfs(ArrayList<Edge>[] graph) {
boolean vis[] = new boolean[graph.length];
for (int i = 0; i < graph.length; i++) {
if (!vis[i]) {
dfsUtil(graph, i, vis);
}
}
}
public static void dfsUtil(ArrayList<Edge>[] graph, int curr, boolean[] vis) {
System.out.print(curr + " ");
vis[curr] = true;
for (int i = 0; i < graph[curr].size(); i++) {
Edge e = graph[curr].get(i);
if (!vis[e.dest]) {
dfsUtil(graph, e.dest, vis);
}
}
}
public static void topSort(ArrayList<Edge>[] graph) {
boolean vis[] = new boolean[graph.length];
Stack<Integer> s = new Stack<>();
for (int i = 0; i < graph.length; i++) {
if (!vis[i]) {
topSortUtil(graph, i, vis, s);
}
}
while (!s.isEmpty()) {
System.out.print(s.pop() + " ");
}
}
public static void topSortUtil(ArrayList<Edge>[] graph, int curr, boolean vis[], Stack<Integer> s) {
vis[curr] = true;
for (int i = 0; i < graph[curr].size(); i++) {
Edge e = graph[curr].get(i);
if (!vis[e.dest]) {
topSortUtil(graph, e.dest, vis, s);
}
}
s.push(curr);
}
public static void main(String[] args) {
int v = 6;
ArrayList<Edge>[] graph = new ArrayList[v];
createGraph(graph);
topSort(graph);
}
}
/*
* Output:
* 5 4 2 3 1 0
*/