Question: 2 - 1 Insertion sort on small arrays in merge sort Although merge sort runs in ( n l g n ) worst - case

2-1 Insertion sort on small arrays in merge sort
Although merge sort runs in (nlgn) worst-case time and insertion sort
runs in (n2) worst-case time, the constant factors in insertion sort can
make it faster in practice for small problem sizes on many machines.
Thus it makes sense to coarsen the leaves of the recursion by using
insertion sort within merge sort when subproblems become sufficiently
small. Consider a modification to merge sort in which nk sublists 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 insertion sort can sort the nk sublists, each of length k, in
(nk) worst-case time.
b. Show how to merge the sublists in (nlg(nk)) worst-case time.
c. Given that the modified algorithm runs in (nk+nlg(nk)) worst-
case time, what is the largest value of k as a function of n for which
the modified algorithm has the same running time as standard merge
sort, in terms of -notation?
d. How should you choose k in practice?
 2-1 Insertion sort on small arrays in merge sort Although merge

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!