1. Computer Science Engineering (CSE)
  2. Design and Analysis of Algorithms
  3. Which is the correct technique for findi...
Q.

Which is the correct technique for finding a maximum matching in a graph?

A. dfs traversal
B. bfs traversal
C. shortest path traversal
D. heap order traversal
Answer» B. bfs traversal
Explanation: the correct technique for finding a maximum matching in a bipartite graph is by using a breadth first search(bfs).

Discussion