Why is quicksort better than mergesort? - Stack Overflow most recent 30 from stackoverflow.com2009-11-09T08:43:42Zhttp://stackoverflow.com/feeds/question/70402http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/70402/why-is-quicksort-better-than-mergesort14Why is quicksort better than mergesort?Daud2008-09-16T08:37:52Z2008-10-20T09:18:42Z
<p>I was asked this question during an interview. They're both O(nlogn) and yet most people use Quicksort instead of Mergesort. Why is that?</p>
http://stackoverflow.com/questions/70402/why-is-quicksort-better-than-mergesort/70421#7042118Answer by Dark Shikari for Why is quicksort better than mergesort?Dark Shikari2008-09-16T08:41:02Z2008-09-16T08:41:02Z<p>Actually, QuickSort is O(n^2). Its <em>average case</em> running time is O(nlog(n)), but its <em>worst-case</em> is O(n^2), which occurs when you run it on a list that is reverse-sorted. This can be avoided by randomizing the list before sorting, making such a case unlikely. Randomization takes O(n). Of course, this doesn't change its worst case, it just prevents a malicious user from making your sort take a long time.</p>
<p>QuickSort is more popular because it:</p>
<ol>
<li>Is in-place (MergeSort requires tons of extra memory).</li>
<li>Has a small hidden constant.</li>
</ol>
http://stackoverflow.com/questions/70402/why-is-quicksort-better-than-mergesort/70423#704233Answer by Niyaz for Why is quicksort better than mergesort?Niyaz2008-09-16T08:41:30Z2008-09-16T08:41:30Z<p>Quicksort is the fastest sorting algorithm in practice but has a number of pathological cases that can make it perform as badly as O(n2).</p>
<p>Heapsort is guaranteed to run in O(n*ln(n)) and requires only finite additional storage. But there are many citations of real world tests which show that heapsort is significantly slower than quicksort on average. </p>
http://stackoverflow.com/questions/70402/why-is-quicksort-better-than-mergesort/70427#704270Answer by Simon Johnson for Why is quicksort better than mergesort?Simon Johnson2008-09-16T08:42:05Z2008-09-16T09:04:41Z<p>Quicksort has a better average case complexity but in some applications it is the wrong choice. Quicksort is vulnerable to denial of service attacks. If an attacker can choose the input to be sorted, he can easily construct a set that takes the worst case time complexity of o(n^2).</p>
<p>Mergesort's average case complexity and worst case complexity are the same, and as such doesn't suffer the same problem. This property of merge-sort also makes it the superior choice for real-time systems - precisely because there aren't pathological cases that cause it to run much, much slower. </p>
<p>I'm a bigger fan of Mergesort than I am of Quicksort, for these reasons.</p>
http://stackoverflow.com/questions/70402/why-is-quicksort-better-than-mergesort/70428#704281Answer by gnobal for Why is quicksort better than mergesort?gnobal2008-09-16T08:42:10Z2008-09-16T08:42:10Z<p>From <a href="http://en.wikipedia.org/wiki/Quicksort" rel="nofollow">the Wikipedia entry on Quicksort</a>:</p>
<blockquote>
<p>Quicksort also competes with
mergesort, another recursive sort
algorithm but with the benefit of
worst-case Θ(nlogn) running time.
Mergesort is a stable sort, unlike
quicksort and heapsort, and can be
easily adapted to operate on linked
lists and very large lists stored on
slow-to-access media such as disk
storage or network attached storage.
Although quicksort can be written to
operate on linked lists, it will often
suffer from poor pivot choices without
random access. The main disadvantage
of mergesort is that, when operating
on arrays, it requires Θ(n) auxiliary
space in the best case, whereas the
variant of quicksort with in-place
partitioning and tail recursion uses
only Θ(logn) space. (Note that when
operating on linked lists, mergesort
only requires a small, constant amount
of auxiliary storage.)</p>
</blockquote>
http://stackoverflow.com/questions/70402/why-is-quicksort-better-than-mergesort/70430#704303Answer by Mat Mannion for Why is quicksort better than mergesort?Mat Mannion2008-09-16T08:43:02Z2008-09-16T08:43:02Z<p>Wikipedia's explanation is:</p>
<blockquote>
<p>Typically, quicksort is significantly faster in practice than other Θ(nlogn) algorithms, because its inner loop can be efficiently implemented on most architectures, and in most real-world data it is possible to make design choices which minimize the probability of requiring quadratic time.</p>
</blockquote>
<p><a href="http://en.wikipedia.org/wiki/Quicksort" rel="nofollow">Quicksort</a></p>
<p><a href="http://en.wikipedia.org/wiki/Mergesort" rel="nofollow">Mergesort</a></p>
<p>I think there are also issues with the amount of storage needed for Mergesort (which is Ω(n)) that quicksort implementations don't have. In the worst case, they are the same amount of algorithmic time, but mergesort requires more storage.</p>
http://stackoverflow.com/questions/70402/why-is-quicksort-better-than-mergesort/70440#704400Answer by D.J. Capelis for Why is quicksort better than mergesort?D.J. Capelis2008-09-16T08:44:17Z2008-09-16T08:44:17Z<p>While they're both in the same complexity class, that doesn't mean they both have the same runtime. Quicksort is usually faster than mergesort, just because it's easier to code a tight implementation and the operations it does can go faster. It's because that quicksort is generally faster that people use it instead of mergesort.</p>
<p>However! I personally often will use mergesort or a quicksort variant that degrades to mergesort when quicksort does poorly. Remember. Quicksort is only O(n log n) on <em>average</em>. It's worst case is O(n^2)! Mergesort is always O(n log n). In cases where realtime performance or responsiveness is a must and your input data could be coming from a malicious source, <strong>you should not use plain quicksort.</strong></p>
http://stackoverflow.com/questions/70402/why-is-quicksort-better-than-mergesort/70452#704522Answer by Antti Rasinen for Why is quicksort better than mergesort?Antti Rasinen2008-09-16T08:47:45Z2008-09-16T08:47:45Z<p>I'd like to add that of the three algoritms mentioned so far (mergesort, quicksort and heap sort) only mergesort is stable. That is, the order does not change for those values which have the same key. In some cases this is desirable.</p>
<p>But, truth be told, in practical situations most people need only good average performance and quicksort is... quick =)</p>
<p>All sort algorithms have their ups and downs. See <a href="http://en.wikipedia.org/wiki/Sorting_algorithm#Classification" rel="nofollow">Wikipedia article for sorting algorithms</a> for a good overview.</p>
http://stackoverflow.com/questions/70402/why-is-quicksort-better-than-mergesort/70627#706272Answer by Roman Glass for Why is quicksort better than mergesort?Roman Glass2008-09-16T09:13:40Z2008-09-16T09:13:40Z<p><a href="http://en.wikipedia.org/wiki/Mu_(negative)" rel="nofollow">Mu!</a>
Quicksort is not better, it is well suited for a different kind of application, than mergesort.</p>
<blockquote>
<p>Mergesort is worth considering if speed is of the essence, bad worst-case performance cannot be tolerated, and extra space is available.[1]</p>
</blockquote>
<p>You stated that they «They're both O(nlogn) […]». This is wrong. «Quicksort uses about n^2/2 comparisons in the worst case.»[1].</p>
<p>However the most important property according to my experience is the easy implementation of sequential access you can use while sorting when using programming languages with the imperative paradigm. </p>
<p>[1] Sedgewick, Algorithms</p>
http://stackoverflow.com/questions/70402/why-is-quicksort-better-than-mergesort/70631#7063117Answer by Konrad Rudolph for Why is quicksort better than mergesort?Konrad Rudolph2008-09-16T09:14:24Z2008-09-16T09:14:24Z<p>You should also have a look at <a href="http://en.wikipedia.org/wiki/Introsort" rel="nofollow">Introsort</a>. It uses a very neat trick to push QuickSort's worst case down to <em>O</em>(<em>n</em> log <em>n</em>) while maintaining the other good performance characteristics. This is also why introsort is used in many modern “default” sorting implementations.</p>
<p>Basically, what it does is count the recursion depth. If a logarithmic depth is exceeded, the algorithm switches to MergeSort instead.</p>
<p>Another very good implementation is randomized QuickSort. And unlike suggested by <a href="#70421" rel="nofollow">Dark Shikari</a>, randomization does <em>not</em> take additional preprocessing time. (The pivot element is chosen randomly.) Yes, this is actually the same performance overhead but Dark Shikari's text makes it look expensive while it really isn't, it just adds a very small constant factor.</p>
http://stackoverflow.com/questions/70402/why-is-quicksort-better-than-mergesort/70706#707068Answer by liamvictor for Why is quicksort better than mergesort?liamvictor2008-09-16T09:26:23Z2008-09-16T09:26:23Z<p>The <a href="http://vision.bc.edu/~dmartin/teaching/sorting/anim-html/all.html" rel="nofollow" title="Animated Sorting Algorithms">Animated Sorting Algorithms</a> shows a number of algorithms on 4 different initial conditions and might help. </p>
http://stackoverflow.com/questions/70402/why-is-quicksort-better-than-mergesort/77945#779450Answer by xpda for Why is quicksort better than mergesort?xpda2008-09-16T22:29:46Z2008-10-20T09:18:42Z<p>Quicksort is NOT better than mergesort. With O(n^2) (worst case that rarely happens), quicksort is potentially far slower than the O(nlogn) of the merge sort. Quicksort has less overhead, so with small n and slow computers, it is better. But computers are so fast today that the additional overhead of a mergesort is negligible, and the risk of a very slow quicksort far outweighs the insignificant overhead of a mergesort in most cases.</p>
http://stackoverflow.com/questions/70402/why-is-quicksort-better-than-mergesort/79149#791490Answer by EvilTeach for Why is quicksort better than mergesort?EvilTeach2008-09-17T02:00:10Z2008-09-27T23:56:50Z<p>In c/c++ land, when not using stl containers, I tend to use quicksort, because it is built
into the run time, while mergesort is not.</p>
<p>So I believe that in many cases, it is simply the path of least resistance.</p>
<p>In addition performance can be much higher with quick sort, for cases where the entire dataset does not fit into the working set.</p>
http://stackoverflow.com/questions/70402/why-is-quicksort-better-than-mergesort/79182#791821Answer by Javier for Why is quicksort better than mergesort?Javier2008-09-17T02:09:41Z2008-09-17T02:09:41Z<p>As others have noted, worst case of Quicksort is O(n^2), while mergesort and heapsort stay at O(nlogn). On the average case, however, all three are O(nlogn); so they're for the vast majority of cases comparable.</p>
<p>What makes Quicksort better on average is that the inner loop implies comparing several values with a single one, while on the other two both terms are different for each comparison. In other words, Quicksort does half as many reads as the other two algorithms. On modern CPUs performance is heavily dominated by access times, so in the end Quicksort ends up being a great first choice.</p>
http://stackoverflow.com/questions/70402/why-is-quicksort-better-than-mergesort/90477#9047713Answer by bentilly for Why is quicksort better than mergesort?bentilly2008-09-18T06:19:50Z2008-09-18T06:19:50Z<p>As many people have noted, the average case performance for quicksort is faster than mergesort. <strong>But</strong> this is only true if you are assuming constant time to access any piece of memory on demand.</p>
<p>In RAM this assumption is generally not too bad (it is not always true because of caches, but it is not too bad). However if your data structure is big enough to live on disk, then quicksort gets <em>killed</em> by the fact that your average disk does something like 200 random seeks per second. But that same disk has no trouble reading or writing megabytes per second of data sequentially. Which is exactly what mergesort does.</p>
<p>Therefore if data has to be sorted on disk, you really, really want to use some variation on mergesort. (Generally you quicksort sublists, then start merging them together above some size threshold.)</p>
<p>Furthermore if you have to do <em>anything</em> with datasets of that size, think hard about how to avoid seeks to disk. For instance this is why it is standard advice that you drop indexes before doing large data loads in databases, and then rebuild the index later. Maintaining the index during the load means constantly seeking to disk. By contrast if you drop the indexes, then the database can rebuild the index by first sorting the information to be dealt with (using a mergesort of course!) and then loading it into a BTREE datastructure for the index. (BTREEs are naturally kept in order, so you can load one from a sorted dataset with few seeks to disk.)</p>
<p>There have been a number of occasions where understanding how to avoid disk seeks has let me make data processing jobs take hours rather than days or weeks.</p>
http://stackoverflow.com/questions/70402/why-is-quicksort-better-than-mergesort/144890#1448901Answer by Anders Eurenius for Why is quicksort better than mergesort?Anders Eurenius2008-09-28T00:45:48Z2008-09-28T01:14:42Z<p>All things being equal, I'd expect most people to use whatever is most conveniently available, and that tends to be qsort(3). Other than that quicksort is known to be very fast on arrays, just like mergesort is the common choice for lists.</p>
<p>What I'm wondering is why it's so rare to see <a href="http://en.wikipedia.org/wiki/Radix_sort" rel="nofollow"><strong>radix</strong></a> or bucket sort. They're O(n), at least on linked lists and all it takes is some method of converting the key to an ordinal number. (strings and floats work just fine.) </p>
<p>I'm thinking the reason has to do with how computer science is taught. I even had to demonstrate to my lecturer in Algorithm analysis that it was indeed possible to sort faster than O(n log(n)). (He had the proof that you can't <em>comparison</em> sort faster than O(n log(n)), which is true.)</p>
<p>In other news, floats can be sorted as integers, but you have to turn the negative numbers around afterwards.</p>
<p>Edit:
Actually, here's an even more vicious way to sort floats-as-integers: <a href="http://www.stereopsis.com/radix.html" rel="nofollow">http://www.stereopsis.com/radix.html</a>. Note that the bit-flipping trick can be used regardless of what sorting algorithm you actually use...</p>