InterviewSolution
Saved Bookmarks
| 1. |
For a graph of degree three, in what time can a Hamiltonian path be found?(a) O(0.251^n)(b) O(0.401^n)(c) O(0.167^n)(d) O(0.151^n) |
|
Answer» The correct answer is (a) O(0.251^n) Easy explanation - For a graph of maximum degree three, a Hamiltonian path can be found in time O(0.251^n). |
|