Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is QuickSort with a 3-way partition?

share|improve this question

3 Answers

up vote 24 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).

share|improve this answer
+1 for the concise explanation. – altCognito Jun 2 '09 at 19:42
Thanks ! – jjnguy Jun 2 '09 at 19:44
4  
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
1  
Came across this post while doing my own research... I have to say I half agree with this answer. Yes, it is split into 3 partitions, but there is only ONE pivot, where each partition is either <,=,>. Doing the above partitioning doesn't seem to add any benefits above the standard 2 partition. Just my 2pence for whoever comes by googling. – Daryl Teo Dec 7 '12 at 9:37
show 4 more comments

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...

share|improve this answer
This seems to be the correct answer. 3 way quick sort deals with performance when there are many duplicate keys. – Nick Siderakis Sep 19 '12 at 22:15

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.

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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