InterviewSolution
Saved Bookmarks
| 1. |
What will be the chromatic index for an empty graph having n vertices?(a) 0(b) 1(c) 2(d) nI have been asked this question in examination.My question comes from Graph Coloring in chapter Graph Coloring of Data Structures & Algorithms II |
|
Answer» RIGHT answer is (a) 0 To EXPLAIN: An empty graph is a graph WITHOUT any edges. So the CHROMATIC index for such a graph will be 0. |
|