InterviewSolution
Saved Bookmarks
| 1. |
What is the worst case time complexity of merge sort?(a) O(n log n)(b) O(n^2)(c) O(n^2 log n)(d) O(n log n^2)This question was addressed to me during an online exam.My query is from Sorting in section Sorting of Data Structures & Algorithms II |
|
Answer» Correct answer is (a) O(N LOG n) |
|