Question:

Match List-I with List-II.

List-IList-II
A. Minimum Spanning TreeI. Height balanced
B. Topological SortII. Stack
C. RecursionIII. Kruskal’s Algorithm
D. AVL TreesIV. DFS


Choose the correct answer from the options given below:

Show Hint

AVL = Height balanced, Recursion = Stack, MST = Kruskal/Prim, Topological = DFS.
Updated On: Jun 5, 2026
  • A-I, B-II, C-III, D-IV
  • A-IV, B-III, C-II, D-I
  • A-II, B-I, C-III, D-IV
  • A-III, B-IV, C-II, D-I
Show Solution
collegedunia
Verified By Collegedunia

The Correct Option is D

Solution and Explanation

Concept: Match each concept with its associated property or algorithm.

Step 1:
Match A (Minimum Spanning Tree).
• MST is constructed using algorithms like Kruskal’s or Prim’s \[ A \rightarrow III \]

Step 2:
Match B (Topological Sort).
• Topological sorting uses DFS traversal \[ B \rightarrow IV \]

Step 3:
Match C (Recursion).
• Recursion uses implicit stack \[ C \rightarrow II \]

Step 4:
Match D (AVL Trees).
• AVL trees are height-balanced binary trees \[ D \rightarrow I \]

Step 5:
Final mapping. \[ A-III,\ B-IV,\ C-II,\ D-I \] \[ \boxed{(4)} \]
Was this answer helpful?
0
0