Well, I asked a question about sorting few days ago. I found out how to prove that the least number of comparisons by sorting 8 elements is 16 and I understood why. But my merge sort algorithm counts 17 comparisons and in my case it is right. To merge two sorted arrays with length x and y each we need (x+y)-1 comparisons, so in merge sort we get 17 comparisons. But it must be possible with 16 comparisons, so.. how? where can I save that 1 comparison).
Here is an image:

Thanks!
[0, 1, 2, 3]and[4, 5, 6, 7], then it will take only four comparisons to merge them. After the fourth comparison the first subarray is empty and you can just copy the second subarray--no item comparisons required. – Jim Mischel Dec 31 '11 at 14:59