InterviewSolution
Saved Bookmarks
| 1. |
Which one of the following is not an application of max-flow min-cut algorithm?(a) network reliability(b) closest pair(c) network connectivity(d) bipartite matchingThe question was posed to me during an interview.I want to ask this question from Minimum Cut in section Minimum Cut of Data Structures & Algorithms II |
|
Answer» CORRECT answer is (b) CLOSEST pair Easy EXPLANATION - Network reliability, connectivity and BIPARTITE matching are all applications of min-cut algorithm whereas closest pair is a different kind of PROBLEM. |
|