Okay, I know Mergesort has a worst case time of theta(NlogN) but its overhead is high and manifests near the bottom of the recursion tree where the merges are made. Someone proposed that we stop the recursion once the size reaches K and switch to insertion sort at that point. I need to prove that the running time of this modified recurrence relation is theta(NK + Nlog(N/k))? I am blanking as to how to approach this problem..
|
feedback
|
|
Maybe a good start is to look at the recurrence relation for this problem. I imagine for typical mergesort it would look something like this:
i.e. you are dividing the problem into 2 subproblems of half the size, and then performing N work (the merge). We have a base case that takes constant time. Modelling this as a tree we have:
This gives an expansion of
So really we just need to see how deep it goes. We know that the
So our runtime is Now we introduce insertion sort. Our tree will look something like this
In other words, we will at some level
But we also have a bunch of merging to do as well, at a cost of
So in total we have
It's been too long since I took algorithms to give you a proof sketch, but that should get your neurons firing. | |||
|
feedback
|