What is QuickSort with a 3-way partition?

link|improve this question

@jjnguy: what's with the short-but-sweet tag? – Zifre Jun 2 '09 at 21:31
Short one sentence question that doesn't suck. – jjnguy Jun 2 '09 at 21:54
feedback

3 Answers

up vote 17 down vote accepted

Picture an array:

3, 5, 2, 7, 6, 4, 2, 8, 8, 9, 0

A two partition Quick Sort would pick a value, say 4, and put every element greater than 4 on one side of the array and every element less than 4 on the other side. Like so:

3, 2, 0, 2, 4, | 8, 7, 8, 9, 6, 5

A three partition Quick Sort would pick two values to partition on and split the array up that way. Lets choose 4 and 7:

3, 2, 0, 2, | 4, 6, 5, 7, | 8, 8, 9

It is just a slight variation on the regular quick sort.

You continue partitioning each partition until the array is sorted. The runtime is technically log3(n) which varies ever so slightly from regular quicksort's log2(n).

link|improve this answer
+1 for the concise explanation. – altCognito Jun 2 '09 at 19:42
Thanks ! – jjnguy Jun 2 '09 at 19:44
3  
Now the interesting question is: "Under what conditions is a n-way QS better than a m-way QS?" – dmckee Jun 2 '09 at 20:36
I suppose different partition amounts can work better in different cases. But 2 way seems to work well enough for me. – jjnguy Jun 2 '09 at 20:40
feedback

http://www.sorting-algorithms.com/static/QuicksortIsOptimal.pdf

See also:

http://www.sorting-algorithms.com/quick-sort-3-way

I thought the interview question version was also interesting. It asks, are there four partition versions of quicksort...

link|improve this answer
feedback

if you really grind out the math using Akra-Bazzi formula leaving the number of partitions as a parameter, and then optimize over that parameter, you'll find that e ( =2.718...) partitions gives the fastest performance. in practice, however, our language constructs, cpus, etc are all optimized for binary operations so the standard partitioning to two sets will be fastest.

link|improve this answer
Ah! Just what I was looking for. Thanks. – dmckee Jun 2 '09 at 22:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.