InterviewSolution
Saved Bookmarks
| 1. |
__________ is a data structure used to collect a system of cuts for solving min-cut problem.(a) Gomory-Hu tree(b) Gomory-Hu graph(c) Dancing tree(d) AA treeI got this question in a national level competition.My question is taken from Minimum Cut in portion Minimum Cut of Data Structures & Algorithms II |
|
Answer» CORRECT OPTION is (a) Gomory-Hu TREE Explanation: Gomory-Hu tree is a WEIGHTED tree that CONTAINS the minimum cuts for all pairs in a graph. It is constructed in |V|-1 max-flow computations. |
|