Open In App

Algorithms Quiz | Sudo Placement [1.5] | Question 10

Like Article
Like
Save
Share
Report

A list of n strings, each of length n, is sorted into lexicographic order using the merge-sort algorithm. The worst case running time of this computation is

(A)

O(n log n)

(B)

O(n2 + log n)

(C)

O(n2 log n)

(D)

O(n2)



Answer: (C)

Explanation:

When we are sorting an array of n integers, Recurrence relation for Total number of comparisons involved will be,

T(n) = 2T(n/2) + (n) where (n) is the number of comparisons in order to merge 2 sorted subarrays of size n/2.
= (nlog2n)

Instead of integers whose comparison take O(1) time, we are given n strings. We can compare 2 strings in O(n) worst case. Therefore, Total number of comparisons now will be (n2log2n) where each comparison takes O(n) time now.

In general, merge sort makes (nlog2n) comparisons, and runs in (nlog2n) time if each comparison can be done in O(1) time.


Quiz of this Question
Please comment below if you find anything wrong in the above post


Last Updated : 16 Aug, 2018
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads