-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBFS.cpp
More file actions
127 lines (60 loc) · 1.71 KB
/
BFS.cpp
File metadata and controls
127 lines (60 loc) · 1.71 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
// Program to print BFS traversal from a given source vertex. BFS(int s)
// traverses vertices reachable from s.
#include<iostream>
#include<list>
using namespace std;
class Graph{
int V; //no. of vertices
list<int> *adj; // pointer to array containing adjacency list
public:
Graph(int V);
void addEdge(int v,int w);
void BFS(int s);
};
Graph::Graph(int V){
this->V =V;
adj = new list<int>[V];
}
void Graph :: addEdge(int v,int w){
adj[v].push_back(w); // Add w to v'slist.
}
void Graph :: BFS(int s){
// Mark all the visited vertices as not visited
bool*visited = new bool[V];
for(int i=0;i<V;i++)
visited[i]= false;
// create a queue for BFS
list<int> queue;
//Mark vertex 2 visited
visited[s] = true;
queue.push_back(s);
// iterator
list<int> :: iterator i;
while(!queue.empty()){
// Dequeue a vertex from queue and print it
s = queue.front();
cout<<s<<" ";
queue.pop_front();
// Get all adjacent vertices of the dequeued vertex s
// if a adjacent has not been visited , then mark it visited and enqueue it
for(i = adj[s].begin(); i!=adj[s].end();i++){
if(!visited[*i]){
visited[*i] = true;
queue.push_back(*i);
}
}
}
}
int main(){
// create a graph with 4 vertices
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<<"Breadth First Traversal "<<endl;
g.BFS(2);
return 0;
}