2012-05-04, 01:54 AM
Merge sort is supposed to be faster than quick sort.
On worst case scenarios quick sort is O(n^2) while Merge sort is O(nlogn).
On worst case scenarios quick sort is O(n^2) while Merge sort is O(nlogn).

