InterviewSolution
Saved Bookmarks
| 1. |
The worst-case efficiency of solving a problem in polynomial time is?(a) O(p(n))(b) O(p( n log n))(c) O(p(n^2))(d) O(p(m log n)) |
|
Answer» Correct answer is (a) O(p(n)) The explanation is: The worst-case efficiency of solving an problem in polynomial time is O(p(n)) where p(n) is the polynomial time of input size. |
|