Hi,
i understand merge sort & quick sort even i can write the programs but iam unable to understand its complexity.
its very easy to derive complexity equations for selection & bubble sort.
as the code is little complex & recursive nature i am unable to understand its complexity and how its n log n.
please some one provide me some easy method to understand its complexity.
considering 16 elements in the list.
selection & bubble it takes O(n2);
but quick and merge 16 * 4 = 64.