If you have 5 distinct numbers, how many comparisons at most do you need to sort this using merge sort?
|
1
|
|||||||||||||||||||
|
|
|
I find the question interesting, so I decided to explore it thoroughly (with a little experimentation in Python). I downloaded
The resulting simple histogram (starting with a length of 4, as I did for developing and debugging this) is:
For the problem as posted, with a length of 5 instead of 4, I get:
and with a length of 6 (and a wider format;-):
Finally, with a length of 7 (and even wider format;-):
Surely some perfectly regular combinatorial formula lurks here, but I'm finding it difficult to gauge what it might be, either analytically or by poring over the numbers. Anybody's got suggestions? |
||
|
|
|
What is stopping you from coding a merge sort, keeping a counter for the number of comparisons in it, and trying it out on all permutations of [0,1,2,3,4]? |
||||
|
|
|
When merge-sorting two lists of length L1 and L2, I suppose the worst case number of comparisons is L1+L2-1.
So I guess the answer is 8. This sequence of numbers results in the above: [2], [4], [1], [3], [5] -> [2,4], [1,3], [5] -> [2,4], [1,3,5] -> [1,2,3,4,5] Edit: Here is a naive Erlang implementation. Based on this, the number of comparisons is 5,6,7 or 8 for permutations of 1..5.
|
|||
|
|
|
|
|
||
|
|
|
According to Wikipedia: In the worst case, merge sort does an amount of comparisons equal to or slightly smaller than (n ⌈lg n⌉ - 2^⌈lg n⌉ + 1) |
||||||||||
|
