Quicksort vs heapsort

Heapsort is O(N log N) guaranted, what is much better than worst case in Quicksort. Heapsort doesn’t need more memory for another array to putting ordered data as is needed by Mergesort. So why do comercial applications stick with Quicksort? What Quicksort has that is so special over others implementations? I’ve tested the algorithms myself … Read more