- Time : O(v + e)
- Space : O(v + e)
c++
1 | int bfs(vector<vector<int>>& adj, int u) { |