Challenge: Improving Quicksort
Solve the Improving Quicksort Problem.
We'll cover the following...
The algorithm becomes slow when the input array contains many repeated elements. For example, when all elements in the input array are the same, the partition procedure splits the array into two parts, one empty part and the other part with elements. Since spends time to perform this partition, its overall running time is:
...