InterviewSolution
Saved Bookmarks
| 1. |
To which class does the Euler’s circuit problem belong?(a) P class(b) NP class(c) Partition class(d) Complete classI had been asked this question in an interview for job.I'm obligated to ask this question of Checksum, Complexity Classes & NP Complete Problems in division Checksum, Complexity Classes & NP Complete Problems of Data Structures & Algorithms II |
|
Answer» RIGHT choice is (a) P class For explanation: EULER’s circuit problem can be SOLVED in polynomial time. It can be solved in O(N^2). |
|