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

When analyzing QS, every one always refers to the "almost sorted" worst case. When can such a scenario occur with natural input?

The only example I came up with is re-indexing.

share|improve this question
When its already sorted. – YOU Mar 10 '10 at 7:32
that's not entirely right, see Jens' answer – swegi Mar 10 '10 at 7:52
2  
@Shira, one example of "almost sorted" natural data is when modeling moving objects. Lets say you have several balls which are affected by gravity and other forces. You take a timestep and sort them along their x-axis position. Now, advance the timestep once more. This data is now "almost sorted." Some balls may have swapped positions along the x-axis in that short time but most of them are still sorted. – Simucal Mar 10 '10 at 9:14
Or indeed any situation where you have data that you occasionally modify and occasionally sort. This isn't rare at all, particularly in languages like Python and JS where the array type is extremely widely used and has a fast in-place sort operation, and there's no standard tree type. (Another way of saying this is that "re-indexing" is an extremely general operation that many programs do in one form or another.) – Jason Orendorff Mar 10 '10 at 19:29

3 Answers

I believe that the worst case for quicksort depends on the choice of the pivot element at every step. Quicksort has its worst performance, if the pivot is likely to be either the smallest, or the largest element in the list (e.g. the first or last element of an already sorted list).

If, e.g. you choose the middle element of the list, an already sorted list does not have the worst case runtime.

So, if you suspect your scenario is likely to a bad case scenario for quicksort, you can simply change your choice of pivot element to make quicksort perform better.

Note: I know, that this did not give more example of real world occasions for quicksort worst cases. Examples of this depend on the implementation you are working with.

share|improve this answer
or you use something like median-of-3 to get a relatively well-chosen pivot – swegi Mar 10 '10 at 7:51
or you use a random element. That only goes wrong with a very (very very) small probability, independend of possibly obscure inputs. – Jens Mar 10 '10 at 8:04
The "already sorted" meme's perhaps so prevalent because lots of people take the first element as the pivot, on the assumption that the list is unsorted. In the case of a sorted list, that's the worst element you could choose. – Frank Shearar Mar 10 '10 at 8:11
1  
A list in reverse sorted order would be the worst case if you choose the first element as pivot. One has to choose the last element to make the already sorted case the worst case. Note: The questioner asks for the "almost sorted" case, which is the worst case only with high probability even if you choose the last element. It could be (with small probability) that the median is the last element, which means that almost sorted can as well be the best case. – swegi Mar 10 '10 at 8:46
2  
@swegi: The problem occurs when the current subarray is not sufficiently evenly divided for recursion. It does not matter which extreme (largest or smallest) pivot is chosen; as long as it is extreme, you get worst case behaviour. – Svante Mar 10 '10 at 9:27
show 3 more comments

I think people are confusing Quicksort the partition-based sorting algorithm, and "qsort" the various library implementations.

I prefer to see Quicksort the algorithm as having a pluggable pivot selection algorithm, which is quite essential in analyzing its behavior.

If the first element is always chosen as the pivot, then an already sorted list is the worst-case. Often there's a high probability that the array is already/nearly sorted, so this implementation is rather poor.

Analogously, selecting the last element as the pivot is bad for the same reason.

Some implementations tries to avoid this problem by choosing the middle element as the pivot. This would not perform as badly on already/nearly sorted arrays, but one could still construct an input that would exploit this predictable pivot selection and make it run in quadratic time.

Thus, you get randomized pivot selection algorithms, but even this doesn't guarantee O(N log N).

So other algorithms were developed that would use some information from the sequence before picking a pivot. You can of course scan the whole sequence and find the median, and use that as the pivot. This guarantees O(N log N), but of course slower in practice.

So some corners are cut, and people devised the median-of-3 algorithm. Of course, later even this was exploitable by the so-called median-of-3 "killer".

So more attempts are made at coming up with more "intelligent" pivot selection algorithms that guarantees O(N log N) asymptotic behavior that is still fast enough to be practical, with varying degree of success.

So really, unless one specifies a particular implementation of Quicksort, the question of when the worst case scenario occurs is ill-defined. If you use the so-called median-of-medians pivot selection algorithm, there is no quadratic worst-case scenario.

Most library implementations, however, are likely to forfeit O(N log N) guarantee for much faster sorting in the average case. Some of the really old implementations use the first element as the pivot, which is now well-understood as poor and is no longer a practice widely followed.

share|improve this answer

From Quicksort

for quicksort, "worst case" corresponds to already sorted

A list with all the items the same number is already sorted.

share|improve this answer
1  
too bad, but your source is not entirely right, see Jens's answer – swegi Mar 10 '10 at 7:54
1  
+1, since if all the numbers are the same you'd get the worst case regardless of how you choose the pivot – orip May 12 '10 at 17:21

Your Answer

 
discard

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