Merge Sort: John Von Neumann in 1945. A Detailed Description and Analysis of Bottom
Merge Sort: John Von Neumann in 1945. A Detailed Description and Analysis of Bottom
Merge sort first divides the array into equal halves and then combines them
in a sorted manner.
We know that merge sort first divides the whole array iteratively into equal
halves unless the atomic values are achieved. We see here that an array of 8
items is divided into two arrays of size 4.
This does not change the sequence of appearance of items in the original.
Now we divide these two arrays into halves.
We further divide these arrays and we achieve atomic value which can no
more be divided.
Now, we combine them in exactly the same manner as they were broken
down. Please note the color codes given to these lists.
We first compare the element for each list and then combine them into
another list in a sorted manner. We see that 14 and 33 are in sorted
positions. We compare 27 and 10 and in the target list of 2 values we put 10
first, followed by 27. We change the order of 19 and 35 whereas 42 and 44
are placed sequentially.
In the next iteration of the combining phase, we compare lists of two data
values, and merge them into a list of found data values placing all in a
sorted order.
After the final merging, the list should look like this −
1. Divide the unsorted list into n sublists, each containing 1 element (a list
of 1 element is considered sorted).
Pseudocode
We shall now see the pseudocodes for merge sort functions. As our
algorithms point out two main functions − divide & merge.
Merge sort works with recursion and we shall see our implementation in
the same way.
procedure mergesort( var a as array )
if ( n == 1 ) return a
l1 = mergesort( l1 )
l2 = mergesort( l2 )
end procedure
var c as array
else
end if
end while
end while
end while
return c
end procedure