How does bubble sort work
Each pair of item is compared and if the second one is greater they swap
Maximum number of passes in bubble sort
n-1
How does merge sort work
Divide the list into n sub lists
Then divide the sub list until only element in the list
Merge the sub list again in the correct order