fork download
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int visit[1000];
  4. int n, e;
  5. vector<int>graph[1000];
  6.  
  7. void BFS(int source)
  8. {
  9. visit[source] = 1;
  10. cout<<source<<" ";
  11. queue<int>q;
  12. q.push(source);
  13.  
  14. while(!q.empty())
  15. {
  16. int x = q.front();
  17. q.pop();
  18.  
  19. for(int j = 0; j < graph[x].size(); j++)
  20. {
  21. int node = graph[x][j];
  22. if(visit[node] == 0)
  23. {
  24. visit[node] = 1;
  25. cout<<node<<" ";
  26. q.push(node);
  27. }
  28. }
  29. }
  30.  
  31.  
  32. }
  33.  
  34. int main()
  35. {
  36. cin>>n>>e;
  37. int u, v;
  38. for(int i = 1; i <= e; i++)
  39. {
  40. cin>>u>>v;
  41. graph[u].push_back(v);
  42. graph[v].push_back(u);
  43. }
  44. BFS(1);
  45. }
  46.  
Success #stdin #stdout 0.01s 5288KB
stdin
10 13                                                                            1 4                                                                              1 2                                                                              4 3                                                                              2 3                                                                              3 10                                                                             3 9                                                                              2 8                                                                              2 7                                                                              2 5                                                                              5 7                                                                              7 8                                                                              5 8                                                                              5 6 
stdout
1 4 2 3 8 7 5 10 9 6