Question: Although merge sort runs in (n lg n) worst-case time and insertion sort runs in (n2) worst-case time, the constant factors in insertion sort make
Although merge sort runs in Θ (n lg n) worst-case time and insertion sort runs in Θ(n2) worst-case time, the constant factors in insertion sort make it faster for small n. Thus, it makes sense to use insertion sort within merge sort when sub problems become sufficiently small. Consider a modification to merge sort in which n/k sub lists of length k are sorted using insertion sort and then merged using the standard merging mechanism, where k is a value to be determined.
a. Show that the n/k sub lists, each of length k, can be sorted by insertion sort in Θ (nk) worst-case time.
b. Show that the sub lists can be merged in Θ (n lg (n/k) worst-case time.
c. Given that the modified algorithm runs in Θ(nk + n lg (n/k)) worst-case time, what is the largest asymptotic (Θ notation) value of k as a function of n for which the modified algorithm has the same asymptotic running time as standard merge sort?
d. How should k be chosen in practice?
Step by Step Solution
3.51 Rating (168 Votes )
There are 3 Steps involved in it
It may be better to assign this problem after covering asymptotic notation in Section 31 otherwise p... View full answer
Get step-by-step solutions from verified subject matter experts
Document Format (1 attachment)
C-S-A (101).docx
120 KBs Word File
