show/hide this revision's text 2 edited body

Quicksort is NOT better than mergesort. With O(n^2) (worst case that rarely happens), mergesort quicksort is potentially far slower than the O(nlogn) of the merge sort. Quicksort has less overhead, so with small n and slow computers, it is better. But computers are so fast today that the additional overhead of a mergesort is negligablenegligible, and the risk of a very slow quicksort far outweighs the insignificant overhead of a mergesort in most cases.

show/hide this revision's text 1

Quicksort is NOT better than mergesort. With O(n^2) (worst case that rarely happens), mergesort is potentially far slower than the O(nlogn) of the merge sort. Quicksort has less overhead, so with small n and slow computers, it is better. But computers are so fast today that the additional overhead of a mergesort is negligable, and the risk of a very slow quicksort far outweighs the insignificant overhead of a mergesort in most cases.