Data Structure Time Complexity Question #15268
Single Choice Easy

QWhat is the time complexity of a breadth-first search (BFS) algorithm on a directed acyclic graph (DAG) with V vertices and E edges?

ID: #15268 Time Complexity 139 views
Question Info
#15268Q ID
EasyDifficulty
Time ComplexityTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A O(1)
  • B O(log V)
  • C O(V)
  • D O(V + E)
Correct Answer

Explanation

In a breadth-first search (BFS) algorithm on a directed acyclic graph (DAG), each vertex is visited once, and each edge is traversed once. The time complexity of BFS on a DAG is proportional to the sum of the number of vertices (V) and the number of edges (E), denoted as O(V + E).

Share This Question

Challenge a friend or share with your study group.