InterviewSolution
Saved Bookmarks
| 1. |
What is the worst case time complexity of the Quick sort?(a) O(nlogn)(b) O(n)(c) O(n^3)(d) O(n^2)The question was posed to me in an interview.My doubt is from Quicksort topic in division Sorting of Data Structures & Algorithms II |
|
Answer» The correct answer is (d) O(N^2) |
|