InterviewSolution
Saved Bookmarks
| 1. |
For which of the following combinations of the degrees of vertices would the connected graph be eulerian?(a) 1,2,3(b) 2,3,4(c) 2,4,5(d) 1,3,5I'm obligated to ask this question of Graph in chapter Graph of Data Structures & Algorithms IThis question was posed to me in my homework. |
|
Answer» RIGHT OPTION is (a) 1,2,3 Easiest EXPLANATION - A graph is eulerian if either all of its vertices are even or if only TWO of its vertices are odd. |
|