InterviewSolution
Saved Bookmarks
| 1. |
Time Complexity of Breadth First Search is? (V – number of vertices, E – number of edges)(a) O(V + E)(b) O(V)(c) O(E)(d) O(V*E)I got this question during an interview.My question is from Breadth First Search topic in division Graph Search of Data Structures & Algorithms II |
|
Answer» Correct answer is (a) O(V + E) |
|