InterviewSolution
Saved Bookmarks
| 1. |
What is the average time complexity of bottom up merge sort?(a) O(n log n)(b) O(n^2)(c) O(n^2 log n)(d) O(n log n^2)The question was asked by my college director while I was bunking the class.My question is based upon Sorting in division Sorting of Data Structures & Algorithms II |
|
Answer» The correct answer is (a) O(n log n) |
|