InterviewSolution
Saved Bookmarks
| 1. |
What is the minimum number of cuts that a graph with ‘n’ vertices can have?(a) n+1(b) n(n-1)(c) n(n+1)/2(d) n(n-1)/2This question was addressed to me in final exam.This interesting question is from Minimum Cut topic in portion Minimum Cut of Data Structures & Algorithms II |
|
Answer» The CORRECT option is (C) n(n+1)/2 |
|