Advertisement
Araf_12

BFS

Jan 31st, 2023 (edited)
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.67 KB | None | 0 0
  1. #include <iostream>
  2. #include <vector>
  3. #include <queue>
  4.  
  5. using namespace std;
  6.  
  7. const int MAX = 100;
  8. vector<int> adj[MAX];
  9. bool visited[MAX];
  10.  
  11. void BFS(int s) {
  12.   queue<int> q;
  13.   q.push(s);
  14.   visited[s] = true;
  15.   while (!q.empty()) {
  16.     int u = q.front();
  17.     q.pop();
  18.     cout << u << " ";
  19.     for (int i = 0; i < adj[u].size(); i++) {
  20.       int v = adj[u][i];
  21.       if (!visited[v]) {
  22.         q.push(v);
  23.         visited[v] = true;
  24.       }
  25.     }
  26.   }
  27. }
  28.  
  29. int main() {
  30.   int n, m, s;
  31.   cin >> n >> m >> s;
  32.   for (int i = 0; i < m; i++) {
  33.     int u, v;
  34.     cin >> u >> v;
  35.     adj[u].push_back(v);
  36.     adj[v].push_back(u);
  37.   }
  38.   BFS(s);
  39.   return 0;
  40. }
  41.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement