In the Arrays class quick sort is used for sorting primitives but for sorting objects, it's merge sort.
I wonder why this is so?
The reason for using mergesort is that they want a stable algorithm - e.g. where equal objects (by compareTo()
or compare()
) are at the same relative order as before.
For primitives, equality implies "non-distinguish-ability". When sorting {5, 3, 5}
to {3, 5, 5}
it does not matter which of the fives was the first one before.
So we can use the quicker (and non-stable) quicksort algorithm here.
Just a guess, but quicksort is O(n^2) in the worst case, while merge sort is stable (guaranteed O(n log n)).
The worst case for quicksort is triggered by equal values.. and equal primitives are identical, while "equal" objects may not be.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With