InterviewSolution
Saved Bookmarks
| 1. |
What is the space complexity of in place merge sort?(a) O(1)(b) O(n)(c) O(log n)(d) O(n log n)This question was addressed to me in semester exam.This intriguing question comes from Sorting in section Sorting of Data Structures & Algorithms II |
|
Answer» The correct answer is (c) O(LOG N) |
|