Is this a correct implementation of quicksort? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T14:42:18Z http://stackoverflow.com/feeds/question/691026 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/691026/is-this-a-correct-implementation-of-quicksort 3 Is this a correct implementation of quicksort? mnml 2009-03-27T18:47:02Z 2009-03-28T19:02:12Z <p>I would like to check if this is a correct implementation of QuickSort, It seems to be doing the job, but Am I missing out anything?</p> <pre><code>public class QuickSort implements Sorter { public void sort(Comparable[] items) { QuickSort(items, 0, items.length - 1); } static void QuickSort(Comparable[] items, int a, int b) { int lo = a; int hi = b; if (lo &gt;= hi) { return; } Comparable mid = items[(lo + hi) / 2]; Comparable T; while (lo &lt; hi) { while (items[lo].compareTo(mid)&lt;0) { lo++; } while (mid.compareTo(items[hi])&lt;0) { hi--; } if (lo &lt; hi) { T = items[lo]; items[lo] = items[hi]; items[hi] = T; } } QuickSort(items, a, lo); QuickSort(items, lo == a ? lo + 1 : lo, b); } </code></pre> <p>}</p> <p><strong><em>fixed:</em></strong></p> <pre><code>private static void quickSort(Comparable[] items, int a, int b) { int i = a; int j = b; Comparable x = items[(a+ b) / 2]; Comparable h; do { while (items[i].compareTo(x) &lt; 0) { i++; } while (items[j].compareTo(x) &gt; 0) { j--; } if (i &lt;= j) { h = items[i]; items[i] = items[j]; items[j] = h; i++; j--; } } while (i &lt;= j); if (a &lt; j) { quickSort(items, a, j); } if (i &lt; b) { quickSort(items, i, b); } } </code></pre> http://stackoverflow.com/questions/691026/is-this-a-correct-implementation-of-quicksort/691038#691038 9 Answer by rossfabricant for Is this a correct implementation of quicksort? rossfabricant 2009-03-27T18:50:33Z 2009-03-27T18:50:33Z <p>1 small point- there's a potential int overflow here: </p> <p>(lo + hi) / 2</p> http://stackoverflow.com/questions/691026/is-this-a-correct-implementation-of-quicksort/691051#691051 5 Answer by Charles Bretana for Is this a correct implementation of quicksort? Charles Bretana 2009-03-27T18:53:22Z 2009-03-28T16:05:49Z <p>EDIT: My bad for missing the java tag, sorry... The below is C# generic quickSort... I'll leave it here anyway for .net readers... </p> <p>It looks ok at first glance, but how about this generic one?</p> <pre><code>public class QuickSort&lt;T&gt; where T : IComparable&lt;T&gt; { #region private variable to sort inplace readonly private IList&lt;T&gt; itms; #endregion private variable to sort inplace #region ctor private QuickSort() { } // Hide parameterless constructor /// &lt;summary&gt; /// Constructor requires IList&lt;T&gt; T must implement CompareTo() method.../&gt; /// &lt;/summary&gt; /// &lt;param name="Lst"&gt;List&lt;T&gt; of elements to sort&lt;/param&gt; public QuickSort(IList&lt;T&gt; Lst):this)() { itms = Lst; } #endregion ctor #region public sort method public void Sort() { Sort(0, itms.Count - 1); } /// &lt;summary&gt; /// Executes QuickSort algorithm /// &lt;/summary&gt; /// &lt;param name="L"&gt;Index of left-hand boundary of partition to sort&lt;/param&gt; /// &lt;param name="R"&gt;Index of right-hand boundary of partition to sort&lt;/param&gt; private void Sort(long L, long R) { // Calls iSort (insertion-sort) for partitions smaller than 5 elements if (R - L &lt; 4) iSort(L, R); else { long i = (L + R) / 2, j = R - 1; // Next three lines to set upper and lower bounds if (itms[L].CompareTo(itms[i]) &gt; 0) Swap(L, i); if (itms[L].CompareTo(itms[R]) &gt; 0) Swap(L, R); if (itms[i].CompareTo(itms[R]) &gt; 0) Swap(i, R); Swap(i, j); // -------------------------------- T p = itms[j]; // p = itms[j] is pivot element i = L; while (true) { while (itms[++i].CompareTo(p) &lt; 0) {} while (itms[--j].CompareTo(p) &gt; 0) {} if (j &lt; i) break; Swap(i, j); } Swap(i, R - 1); Sort(L, i); // Sort Left partition -- HERE WAS TYPO BUG Sort(i + 1, R); // Sort Right partition } } #endregion public sort method #region private Helper methods private void Swap(long L, long R) { T t = itms[L]; itms[L] = itms[R]; itms[R] = t; } private void iSort(long L, long R) { for (long i = L; i &lt;= R; i++) { T t = itms[i]; long j = i; while ((j &gt; L) &amp;&amp; (itms[j - 1].CompareTo(t) &gt; 0)) { itms[j] = itms[j - 1]; j--; } itms[j] = t; } } #endregion private Helper methods } </code></pre> http://stackoverflow.com/questions/691026/is-this-a-correct-implementation-of-quicksort/691291#691291 6 Answer by JesperE for Is this a correct implementation of quicksort? JesperE 2009-03-27T20:04:28Z 2009-03-27T20:04:28Z <p>Take this opportunity to learn how to write a unit-test. (Google on "junit", for example). Generate large arrays and make sure that they are sorted properly, for example: arrays filled with random numbers, arrays filled with 0, 1, Integer.MAX_INT. Try to provoke things like integer overflow and other weird cornercases.</p> http://stackoverflow.com/questions/691026/is-this-a-correct-implementation-of-quicksort/693043#693043 1 Answer by Charles Bretana for Is this a correct implementation of quicksort? Charles Bretana 2009-03-28T16:22:27Z 2009-03-28T16:22:27Z <p>And here's a javascript version... QuickSort(a, comp, desc)</p> <ul> <li>a is of course the array to be sorted.</li> <li>comp is the compare function that has to take two values and return -1, 0 or +1 depending on how the 2 arguments should sort.</li> <li><p>desc is boolean to reverse the sort order.</p> <pre><code>function QuickSort(a, comp, desc) { function defComp(L, R) {return((L&gt;R)? 1: (L&lt;R)? -1: 0);} var cmp = (comp)? comp: defComp; var siz = a.length; qSort(0, siz-1); if (desc) reverse(); // ------------------ function qSort(L, R) { if (R - L &lt; 4) {iSort(L, R);} // insertion-sort-- else { var i = parseInt((L+R) /2), j=R-1; if (cmp(a[L], a[i]) &gt; 0) swap(L,i); if (cmp(a[L], a[R]) &gt; 0) swap(L,R); if (cmp(a[i], a[R]) &gt; 0) swap(i,R); swap(i,j); // ------------------------------------------ var p=a[j]; // p=a[j] is pivot i=L; while (true) { while(cmp(a[++i], p) &lt; 0); while(cmp(a[--j], p) &gt; 0); if (j &lt; i) break; swap(i,j); } swap(i,R-1); qSort(L,i); // Left Partition qSort(i+1,R); // Right Partition } } function swap(L,R) {var t=a[L]; a[L]=a[R]; a[R]=t;} function reverse() {for(var i=0; i&lt;parseInt(siz/2); i++) swap(i,(siz-i-1));} // insertion-sort function iSort(L,R) { var j,t; for(var i=L; i&lt;=R; i++) { t = a[i], j = i; while ((j&gt;L) &amp;&amp; (cmp(a[j-1], t) &gt; 0)) {a[j] = a[j-1]; j--;} a[j] = t; } } } </code></pre></li> </ul> http://stackoverflow.com/questions/691026/is-this-a-correct-implementation-of-quicksort/693297#693297 0 Answer by mnml for Is this a correct implementation of quicksort? mnml 2009-03-28T18:50:25Z 2009-03-28T19:02:12Z <pre><code>public static void quicksort( Comparable [ ] a ) { quicksort( a, 0, a.length - 1 ); } private static final int CUTOFF = 10; private static void quicksort( Comparable [ ] a, int low, int high ) { if( low + CUTOFF &gt; high ) insertionSort( a, low, high ); else { int middle = ( low + high ) / 2; if( a[ middle ].compareTo( a[ low ] ) &lt; 0 ) swapReferences( a, low, middle ); if( a[ high ].compareTo( a[ low ] ) &lt; 0 ) swapReferences( a, low, high ); if( a[ high ].compareTo( a[ middle ] ) &lt; 0 ) swapReferences( a, middle, high ); swapReferences( a, middle, high - 1 ); Comparable pivot = a[ high - 1 ]; int i, j; for( i = low, j = high - 1; ; ) { while( a[ ++i ].compareTo( pivot ) &lt; 0 ) ; while( pivot.compareTo( a[ --j ] ) &lt; 0 ) ; if( i &gt;= j ) break; swapReferences( a, i, j ); } swapReferences( a, i, high - 1 quicksort( a, low, i - 1 ); // Sort small elements quicksort( a, i + 1, high ); // Sort large elements } } public static final void swapReferences( Object [ ] a, int index1, int index2 ) { Object tmp = a[ index1 ]; a[ index1 ] = a[ index2 ]; a[ index2 ] = tmp; } private static void insertionSort( Comparable [ ] a, int low, int high ) { for( int p = low + 1; p &lt;= high; p++ ) { Comparable tmp = a[ p ]; int j; for( j = p; j &gt; low &amp;&amp; tmp.compareTo( a[ j - 1 ] ) &lt; 0; j-- ) a[ j ] = a[ j - 1 ]; a[ j ] = tmp; } } </code></pre> <p>From <a href="http://java-blackberry.blogspot.com/2007/12/quick-sort-implementation-with-median.html" rel="nofollow">http://java-blackberry.blogspot.com/2007/12/quick-sort-implementation-with-median.html</a></p>