comparison sort problem - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T00:56:24Z http://stackoverflow.com/feeds/question/251068 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/251068/comparison-sort-problem 2 comparison sort problem el diablo 2008-10-30T17:33:48Z 2008-10-30T23:05:24Z <p>Does a comparison sort have to compare the A[i] largest and A[i+1] largest values? I think any comparison sort must, but I'm not sure. I've checked out mergesort, insertion sort, and quicksort and in each of them the A[i] largest and A[i+1] largest values have to be compared.</p> http://stackoverflow.com/questions/251068/comparison-sort-problem/251086#251086 0 Answer by MizardX for comparison sort problem MizardX 2008-10-30T17:42:25Z 2008-10-30T17:42:25Z <p>Quicksort and Mergesort will always compare neighboring elements. Only time two elements are not compared, is when the algorithm knows there is an element in between. I think the same holds for most other <em>O</em>(<em>n</em>log <em>n</em>) sorting algorithms.</p> http://stackoverflow.com/questions/251068/comparison-sort-problem/251089#251089 0 Answer by sblundy for comparison sort problem sblundy 2008-10-30T17:44:06Z 2008-10-30T17:44:06Z <p>I suspect not. Consider a group of values consisting entirely of duplicates of one value. These are partitioned into 2 groups A and B such that no value in group A is greater than any value in group B. These are then sorted within themselves. The value end of A and the beginning of B need not have been compared.</p> <p>I don't know if there are any practical example of this, but it's fun to think about.</p> http://stackoverflow.com/questions/251068/comparison-sort-problem/251097#251097 1 Answer by Bill the Lizard for comparison sort problem Bill the Lizard 2008-10-30T17:46:02Z 2008-10-30T17:46:02Z <p>Yes, in any comparison sort, adjacent cells will always be compared to each other. See <a href="http://en.wikipedia.org/wiki/Comparison_sort#Number_of_comparisons_required_to_sort_a_list" rel="nofollow">this page</a> for more precise definitions of the lower bounds of comparison sort.</p> http://stackoverflow.com/questions/251068/comparison-sort-problem/251111#251111 0 Answer by Captain Segfault for comparison sort problem Captain Segfault 2008-10-30T17:50:02Z 2008-10-30T17:50:02Z <p>For this sort of problem (much like the more general comparison-sorting-is-n-log-n approach) a (mini) "adversary" argument would be effective -- try to break any algorithm which, on some input, does not make such a comparison.</p> <p>The idea is very similar to the more general "comparison sorts require O(n log n) comparisons" proof, so I'd imagine you've either seen that recently or are about to cover it in your class.</p> http://stackoverflow.com/questions/251068/comparison-sort-problem/251127#251127 1 Answer by David Nehme for comparison sort problem David Nehme 2008-10-30T17:55:33Z 2008-10-30T17:55:33Z <p>Yes they do, unless there are at least 3 identical elements. Without doing that, there's no way to guarantee you have a sorted properly. The only way you avoid comparing all pairs is by the transitive principle. </p> <pre><code>A[i] &gt; A[j] and A[j] &gt; A[k] implies A[i] &gt; A[k]. </code></pre> <p>With distinct consecutive values, there's no intermediate values to help you avoid the comparison.</p> http://stackoverflow.com/questions/251068/comparison-sort-problem/251657#251657 1 Answer by Rafał Dowgird for comparison sort problem Rafał Dowgird 2008-10-30T20:31:18Z 2008-10-30T20:31:18Z <p>Every correct algorithm has to compare adjacent cells, unless they are equal. Proof: Assume otherwise. A[i] and A[i+1] in the final array have not been compared (A[i] &lt; A[i+1). What happens if their positions are swapped in the original array? All the comparisons made by the algorithm give the same results as in the original run(*), therefore it executes the same permutation, therefore their final positions are swapped, so it makes the algorithm incorrect.</p> <p>(*) This follows from the fact that A[i] and A[j] are adjacent.</p> http://stackoverflow.com/questions/251068/comparison-sort-problem/252054#252054 0 Answer by Jin Seok for comparison sort problem Jin Seok 2008-10-30T22:57:01Z 2008-10-30T22:57:01Z <p>because of my english, sorry.. i'm not influent at English.</p> <p>@see Animated Sorting Algorithms : <a href="http://vision.bc.edu/~dmartin/teaching/sorting/anim-html/all.html" rel="nofollow">http://vision.bc.edu/~dmartin/teaching/sorting/anim-html/all.html</a></p> <p>this site show comparison of 8 soring algorithms: Insertion · Selection · Bubble · Shell · Merge · Heap · Quick · Quick3</p> http://stackoverflow.com/questions/251068/comparison-sort-problem/252081#252081 1 Answer by Vern Takebayashi for comparison sort problem Vern Takebayashi 2008-10-30T23:05:24Z 2008-10-30T23:05:24Z <p>Shell sorts don't compare adjacent cells. This is how they gain some efficiency versus the slow sorts (bubble, insertion, selection).</p>