What is the average case time complexity of merge sort?
What is the average case time complexity of merge sort? Correct Answer O(n log n)
The recurrence relation for merge sort is given by T(n) = 2T(n/2) + n. It is found to be equal to O(n log n) using the master theorem.