-
Notifications
You must be signed in to change notification settings - Fork 0
/
bfs.cpp
46 lines (42 loc) · 875 Bytes
/
bfs.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
#include<bits/stdc++.h>
using namespace std;
void addEdge(vector <int> adj[], int u, int v)
{
adj[u].push_back(v);
adj[v].push_back(u);
}
void bfs(vector <int> adj[], int v)
{
vector <bool> visited(v,false);
queue <int> q;
q.push(0);
visited[0] = true;
while(!q.empty())
{
int t = q.front();
q.pop();
cout<<t<<" ";
for(int i = 0; i< adj[t].size(); i++)
{
if(visited[adj[t][i]] == false)
{
q.push(adj[t][i]);
visited[adj[t][i]] = true;
}
}
}
}
int main()
{
int v = 5;
vector <int> adj[v];
addEdge(adj, 0, 1);
addEdge(adj, 0, 4);
addEdge(adj, 1, 2);
addEdge(adj, 1, 3);
addEdge(adj, 1, 4);
addEdge(adj, 2, 3);
addEdge(adj, 3, 4);
bfs(adj,v);
return 0;
}