I suppose if the array is small enough, it is better to use simple Quicksort. 
And the larger the array, the more sense it makes to use more pivots, because 
the calculation cost of comparing against many pivots becomes more affordable 
than iterating for a larger subset.
So you think the optimal number of pivots to use could be directly linked to 
the 
size of the array you're trying to sort?


Reply via email to