What is the time complexity of a Breadth First Search (BFS) traversal on a graph with V vertices and E edges?
O(V + E)
O(E)
O(V)
O(V * E)

Data Structures and Algorithms Exercises are loading ...