Data Structure Time Complexity Question #15252
MCQ Single Best Answer Easy

QWhat is the time complexity of a depth-first search (DFS) algorithm on a graph with V vertices and E edges?

ID: #15252 Time Complexity 161 views
Question Info
#15252Q 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: Option D

Explanation

Depth-first search (DFS) is a graph traversal algorithm that explores as far as possible along each branch before backtracking. In the worst case, DFS visits each vertex once and each edge once, resulting in a time complexity proportional to the sum of the number of vertices (V) and the number of edges (E). Therefore, the time complexity of DFS is O(V + E).

Share This Question

Challenge a friend or share with your study group.