-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathkosarajuAlgorithm-h.cpp
122 lines (113 loc) · 2.17 KB
/
kosarajuAlgorithm-h.cpp
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
#include <iostream>
#include <vector>
#include <stack>
using namespace std;
//maintain a stack to store the order of reaching the points
stack<int> st;
class graph{
public:
vector<int>* adjList;
int nv,ne;
graph(int n){
nv=n;
ne=0;
adjList=new vector<int>[nv+1];
}
void addEdge(int src,int dest){
adjList[src].push_back(dest);
}
//just for debugging process
void printGraph(){
for(int i=0;i<nv;i++){
cout<<i<<" : ";
for(int j=0;j<adjList[i].size();j++){
cout<<adjList[i][j]<<" ";
}
cout<<"\n";
}
}
void dfs(int src,bool visited[]){
if(visited[src]) return;
visited[src]=true;
for(int i=0;i<adjList[src].size();i++){
int child=adjList[src][i];
if(!visited[child]){
dfs(child,visited);
}
}
st.push(src);
}
void dfs_helper(){
bool visited[nv+10]={};
for(int i=0;i<nv;i++){
if(!visited[i]){
dfs(i,visited);
}
}
}
//the nodes visited will lie in a single strongly connected component
void PrintStronglyConnected(int src,bool visited[]){
visited[src]=true;
cout<<src<<" ";
for(int i=0;i<adjList[src].size();i++){
int child=adjList[src][i];
if(!visited[child])
PrintStronglyConnected(child,visited);
}
}
//we keep popping elements of the stack and if the element not visited,
//it belongs to a new strongly connected component
void getConnectedComponents(){
bool visited[nv+1]={};
while(!st.empty()){
int top=st.top();
if(visited[top]==true)
{st.pop();continue;}
PrintStronglyConnected(top,visited);
cout<<"\n";
st.pop();
}
}
};
int main(){
int nv,ne;
cin>>nv>>ne;
graph g(nv);
while(ne--){
int a,b;
cin>>a>>b;
g.addEdge(a,b);
}
g.dfs_helper();
//we first do a conventional dfs on the graph
//and then reverse all the edges
//after reversing the edges, we visit the nodes from the stack
//each unvisited node is gonna be a part of a new
//strongly connected component
graph transposed(nv);
for(int i=0;i<nv;i++){
for(int j=0;j<g.adjList[i].size();i++){
int child=g.adjList[i][j];
transposed.addEdge(child,i);
}
}
transposed.getConnectedComponents();
// transposed.printGraph();
return 0;
}
/*
11 13
0 1
1 2
2 0
1 3
3 4
4 5
5 3
6 5
6 7
7 8
8 9
9 6
9 10
*/