InterviewSolution
Saved Bookmarks
| 1. |
What will be the best 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)I had been asked this question during an internship interview.The doubt is from Sorting in portion Sorting of Data Structures & Algorithms II |
|
Answer» Correct ANSWER is (a) O(N log n) |
|