-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgraph.cpp
More file actions
142 lines (135 loc) · 2.04 KB
/
Copy pathgraph.cpp
File metadata and controls
142 lines (135 loc) · 2.04 KB
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
#include<iostream>
#include<list>
#include<queue>
#include<stack>
#include<vector>
using namespace std;
class Graph{
int V;
list<int>*adj;
public:
Graph(int v)
{
V = v;
adj = new list<int>[V];
}
void addEdge(int s,int d)
{
adj[s].push_back(d);
}
void bfs(int src)
{
list<int>q;
q.push_back(src);
bool *visited = new bool[V];
for(int i=0;i<V;i++)
visited[i] = false;
visited[src] = true;
list<int>::iterator i;
while(!q.empty())
{
int vertex = q.front();
cout<<vertex<<" ";
q.pop_front();
for(i=adj[vertex].begin();i!=adj[vertex].end();++i)
{
if(!visited[*i])
{
visited[*i] = true;
q.push_back(*i);
}
}
}
}
void dfs_util(int src,bool *visited)
{
visited[src] = true;
cout<<src<<" ";
list<int>::iterator i;
for(i=adj[src].begin();i!=adj[src].end();++i)
{
if(!visited[*i])
dfs_util(*i,visited);
}
}
void dfs(int src)
{
list<int>q;
q.push_back(src);
bool *visited = new bool[V];
for(int i=0;i<V;i++)
visited[i] = false;
list<int>::iterator i;
dfs_util(src,visited);
}
void topoutil(int vertex,bool* visited,stack<int>&s)
{
visited[vertex] = true;
list<int>::iterator i;
for(i=adj[vertex].begin();i!=adj[vertex].end();++i)
{
if(!visited[*i])
topoutil(*i,visited,s);
}
s.push(vertex);
}
void toposort()
{
bool visited[V];
stack<int>s;
for(int i=0;i<V;i++)
visited[i] = false;
for(int i=0;i<V;i++)
if(!visited[i])
topoutil(i,visited,s);
while(!s.empty())
{
cout<<s.top()<<" ";
s.pop();
}
}
void mother_vertex()
{
bool visited[V];
int mother;
for(int i=0;i<V;i++)
visited[i] = false;
for(int i=0;i<V;i++)
{if(!visited[i])
{dfs_util(i,visited);
mother = i;
}
}
// check if all vertices can be visited from mother
for(int i=0;i<V;i++)
visited[i] = false;
dfs_util(mother,visited);
for(int i=0;i<V;i++)
{
if(!visited[i])
{
cout<<"\nNot mother!";
return;
}
}
cout<<"\n"<<mother<<" is the mother vertex!";
}
};
main()
{
Graph g(4);
g.addEdge(0, 1);
g.addEdge(0, 2);
g.addEdge(1, 2);
g.addEdge(2, 0);
g.addEdge(2, 3);
g.addEdge(3, 3);
cout<<"\nBFS: ";
g.bfs(2);
cout<<"\nDFS: ";
g.dfs(2);
cout<<"\nToposort: ";
g.toposort();
cout<<"\nMother vertex: ";
g.mother_vertex();
}