Mergesort
•Which is the same as 3*N-2m .
•Using the BIG O approach, this breaks down to O(N) operations at each level of recursion.
•Because there are either log2N or 1+log2N levels, mergesort altogether has a worst and average case efficiency of O(N*log2N)