-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathTarjan's Algorithm
69 lines (60 loc) · 1.87 KB
/
Tarjan's Algorithm
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
public class Main {
static boolean[] visited;
static int[][] adjMatrix;
static int noOfVertices;
static int[] dfsnum,low;
static int num=0;
public static void main(String[] args) {
noOfVertices=4;
adjMatrix=new int[][]{
{0,1,0,1},
{0,0,1,0},
{1,0,0,1},
{0,0,0,0}
};
System.out.println("Each line is a list of vertex which form \na strongly connected component:");
stronglyConnected();
}
static void stronglyConnected(){
visited=new boolean[noOfVertices];
Stack<Integer> stack=new Stack<>();
dfsnum = new int[noOfVertices];
low = new int[noOfVertices];
for(int i = 0;i < noOfVertices; i++) {
dfsnum[i] = -1;
low[i] = -1;
}
for(int vertex = 0;vertex < noOfVertices; vertex++) {
if(dfsnum[vertex] == -1){
findSC(vertex,stack);
}
}
}
static void findSC(int vertex, Stack<Integer> stack){
dfsnum[vertex] = low[vertex] = num++;
stack.push(vertex);
visited[vertex] = true;
for(int v = 0; v < noOfVertices; v++) {
if(adjMatrix[vertex][v]==1){
if(dfsnum[v] == -1){
findSC(v,stack);
low[vertex]=Math.min(low[v],low[vertex]);
}
else if(visited[v]){
low[vertex]=Math.min(dfsnum[v],low[vertex]);
}
}
}
int w = -1;
if (low[vertex] == dfsnum[vertex])
{
while (w != vertex)
{
w = (int)stack.pop();
System.out.print(w + " ");
visited[w] = false;
}
System.out.println();
}
}
}