-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbfs.cpp
More file actions
50 lines (46 loc) · 1.07 KB
/
bfs.cpp
File metadata and controls
50 lines (46 loc) · 1.07 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
#include<bits/stdc++.h>
using namespace std;
void printBFS(int** edges, int n, int sv, bool* visited){
queue<int> q;
q.push(sv);
visited[sv] = true;
while(!q.empty()){
int currVertex = q.front();
q.pop();
cout << currVertex << " ";
for(int i = 0; i < n; i++){
if(i == currVertex){
continue;
}
if(edges[currVertex][i] == 1){
if(visited[i] == true){
continue;
}
q.push(i);
visited[i] = true;
}
}
}
}
int main(){
int n, e;
cin >> n>>e;
int** edges = new int*[n];
for(int i = 0; i < n; i++){
edges[i] = new int[n];
for(int j = 0; j < n; j++){
edges[i][j] = 0;
}
}
for(int i = 0; i < e; i++){
int f, s;
cin >> f >> s;
edges[f][s] = 1;
edges[s][f] = 1;
}
bool* visited = new bool[n];
for(int i = 0; i < n; i++){
visited[i] = false;
}
printBFS(edges, n, 0, visited);
}