InterviewSolution
Saved Bookmarks
| 1. |
What will be the chromatic number for a complete graph having n vertices?(a) 0(b) 1(c) n(d) n!I got this question in homework.I need to ask this question from Graph Coloring topic in chapter Graph Coloring of Data Structures & Algorithms II |
|
Answer» CORRECT CHOICE is (C) n To explain: A complete graph is the ONE in which each vertex is directly connected with all other VERTICES with an edge. So in such a case each vertex should have a unique color. Thus the chromatic number will be n. |
|