-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbfs.cpp
53 lines (43 loc) · 1015 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
47
48
49
50
51
52
53
#include<iostream>
#include<algorithm>
#include<vector>
#include<queue>
using namespace std;
void bfs(int start, vector<int> graph[], bool visited[])
{
queue<int> q;
q.push(start);
visited[start]=true;
while(!q.empty()){
int temp = q.front(); //the first element of queue
q.pop(); //take off the first element
cout<<temp<<" ";
for(int i=0; i<graph[temp].size(); i++){
if(visited[graph[temp][i]] == false){
q.push(graph[temp][i]);
visited[graph[temp][i]] = true;
}
}
}
}
int main()
{
int n, m;
cin>>n;
cin>>m; //number of line
vector<int> graph[n+1];
bool visited[n+1];
fill(visited, visited+n+1, false); //initialize the array to false
int x,y;
for(int i=0; i<m; i++){
cin >> x >> y;
graph[x].push_back(y);
graph[y].push_back(x);
}
int start;
cin >> start;
for(int i=0; i<n; i++)
sort(graph[i].begin(), graph[i].end());
bfs(start, graph, visited);
return 0;
}