-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathTopologicalSorting.java
158 lines (155 loc) · 1.73 KB
/
TopologicalSorting.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
package SummerTrainingGFG.Graph;
import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.Queue;
/**
* @author Vishal Singh
* 07-02-2021
* Did you know extra semicolons are not error in java?
* Fork/Star the repo if you didn't
*/
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
;
public class TopologicalSorting {
public static void addEdge(ArrayList<ArrayList<Integer>> graph, int s,int d){
graph.get(s).add(d);
}
public static void topologicalSort(ArrayList<ArrayList<Integer>> graph,int v){
int[] dependency = new int[v];
for (ArrayList<Integer> integers : graph) {
for (int d : integers) {
dependency[d]++;
}
}
Queue<Integer> q = new ArrayDeque<>();
for (int i = 0; i < v; i++) {
if (dependency[i] == 0){
q.add(i);
}
}
while (!q.isEmpty()){
int s = q.poll();
System.out.print(s+" ");
for (int d: graph.get(s)){
dependency[d]--;
if (dependency[d]==0){
q.add(d);
}
}
}
System.out.println();
}
public static void main(String[] args) {
ArrayList<ArrayList<Integer>> graph = new ArrayList<>();
int v = 5;
for (int i = 0; i < v; i++) {
graph.add(new ArrayList<>());
}
addEdge(graph,0,2);
addEdge(graph,0,3);
addEdge(graph,1,3);
addEdge(graph,1,4);
addEdge(graph,2,3);
topologicalSort(graph,v);
}
}