Advertisement
Araf_12

DFS

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