InterviewSolution
Saved Bookmarks
| 1. |
What is the auxiliary space complexity of standard merge sort?(a) O(1)(b) O(log n)(c) O(n)(d) O(n log n)This question was posed to me during a job interview.My query is from Sorting in chapter Sorting of Data Structures & Algorithms II |
|
Answer» Correct ANSWER is (c) O(n) |
|