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.
|
2 | edited body | ||
|
|
||||
|
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. |
||||
