-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathTopologicalSort.java
90 lines (67 loc) · 2.6 KB
/
TopologicalSort.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
/**
* Topological sorting for Directed Acyclic Graph (DAG) is a linear ordering of vertices
* such that for every directed edge uv, vertex u comes before v in the ordering.
* Topological Sorting for a graph is not possible if the graph is not a DAG.
*
*
* Algorithm
* We can modify DFS to find Topological Sorting of a graph.
* In DFS, we start from a vertex, we first print it and then recursively call DFS for its adjacent vertices.
* In topological sorting, we use a temporary stack.
* We don’t print the vertex immediately, we first recursively call topological sorting for all its adjacent vertices,
* then push it to a stack.
* Finally, print contents of stack.
* Note that a vertex is pushed to stack only
* when all of its adjacent vertices (and their adjacent vertices and so on) are already in stack.
*/
import java.util.*;
import java.io.*;
@SuppressWarnings("unchecked")
class TopologicalSort {
int vertices;
LinkedList<Integer>[] adjacencyList;
TopologicalSort(int vertices) {
this.vertices = vertices;
adjacencyList = new LinkedList[vertices];
for (int i = 0; i < vertices; i++)
adjacencyList[i] = new LinkedList<Integer>();
}
void addEdge(int v, int w) {
adjacencyList[v].add(w);
}
void TopologicalSortingUtil(int node, boolean[] visited, Stack stack){
visited[node] = true;
Iterator<Integer> iterator = adjacencyList[node].listIterator();
while (iterator.hasNext()) {
int num = iterator.next();
if (!visited[num]) {
TopologicalSortingUtil(num, visited, stack);
}
}
stack.push(node);
}
void TopologicalSorting() {
System.out.print("Topological Sorting of the Graph : ");
boolean[] visited = new boolean[vertices];
Stack<Integer> stack = new Stack<Integer>();
for(int i=0 ; i<vertices; i++){
if(!visited[i]){
TopologicalSortingUtil(i, visited, stack);
}
}
while(!stack.isEmpty()){
System.out.print(stack.pop()+" ");
}
System.out.print("\n");
}
public static void main(String[] args) {
TopologicalSort TopologicalSort = new TopologicalSort(6);
TopologicalSort.addEdge(5, 2);
TopologicalSort.addEdge(5, 0);
TopologicalSort.addEdge(4, 0);
TopologicalSort.addEdge(4, 1);
TopologicalSort.addEdge(2, 3);
TopologicalSort.addEdge(3, 1);
TopologicalSort.TopologicalSorting();
}
}