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)

For explanation: The time complexity of MERGE sort is not affected in any case as its algorithm has to implement the same number of steps. So its time complexity remains to be O(n log n) even in the best case.



Discussion

No Comment Found

Related InterviewSolutions