Question:medium

Match List - I with List - II. 

List - IList - II
A.Binary searchI.Queue
B.Merge sortII.Stack
C.Depth First Search (DFS)III.\(T(n) = 2T(n/2) + n\)
D.Breadth First Search (BFS)IV.\(T(n) = T(n/2) + 1\)

Choose the correct answer from the options given below:

Show Hint

Recurrence Tip: If it works on both halves, it's $2T(n/2)$ (Merge Sort). If it works on one half, it's $T(n/2)$ (Binary Search).
Updated On: Jun 8, 2026
  • A-III, B-IV, C-I, D-II
  • A-I, B-II, C-III, D-IV
  • A-IV, B-III, C-II, D-I
  • A-II, B-IV, C-III, D-I
Show Solution

The Correct Option is C

Solution and Explanation

Was this answer helpful?
0

Top Questions on Algorithm


Questions Asked in CUET (PG) exam