Although the complex in case of bad resolution of QuickSort is O(N2). However QuickSort usually is chosen in the practical application, explain why?
|
|
You shouldn't center only on worst case and only on time complexity. It's more about average than worst, and it's about time and space. Quicksort:
Also have in account that big O notation doesn't take in account any constants, but in practice it does make difference if the algorithm is few times faster. Θ(n log n) means, that algorithm executes in K n log(n), where K is constant. Quicksort is the comparison-sort algorithm with the lowest K. |
|||
|
|
|
|
Whenever i hear of sorting times i always think of the following web-site which illustrates perfectly the why: |
||
|
|
|
|
Average asymptotic order of QuickSort is To make it more sensible, consider the probability that QuickSort will finish in |
||
|
|
|
|
Because on average it's the fastest comparison sort (in terms of elapsed time). |
||
|
|
|
|
Because, in the general case, it's one of the fastest sorting algorithms. |
||
|
|
|
|
It might be worth pointing out that C does have the library function |
||
|
|
