Whats the best method to maintain or measure how well sorted a collection is so we can choose best sort algorithm? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T11:20:28Zhttp://stackoverflow.com/feeds/question/220084http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/220084/whats-the-best-method-to-maintain-or-measure-how-well-sorted-a-collection-is-so4Whats the best method to maintain or measure how well sorted a collection is so we can choose best sort algorithm?Doug T.2008-10-20T21:51:45Z2008-10-20T22:22:59Z
<p>Inspired by <a href="http://stackoverflow.com/questions/220044/which-sort-algorithm-works-best-on-mostly-sorted-data">this question</a></p>
<p>The choice of which algorithm to use to sort a collection can be made better if we know ahead of time how well sorted a collection is. Is there a way we can measure (or maintain a measurement) of how well sorted the collection is? Can we do this in such a way that the cost of maintaining or measuring how well sorted something doesn't outweigh the benefit of choosing the best sort algorithm?</p>
http://stackoverflow.com/questions/220084/whats-the-best-method-to-maintain-or-measure-how-well-sorted-a-collection-is-so/220091#2200912Answer by Jason Cohen for Whats the best method to maintain or measure how well sorted a collection is so we can choose best sort algorithm?Jason Cohen2008-10-20T21:54:29Z2008-10-20T21:54:29Z<p>You could use sampling: Check N elements spaced evenly in the list and see how many are in order. (Of course that only works in a random-access list, but usually that's the type you sort.)</p>
<p>Also have a threshold for small N. If N is small (e.g. <code>10</code>) insertion sort is good even if the list isn't sorted. Java makes this optimization for small N in what is otherwise a merge-sort.</p>
http://stackoverflow.com/questions/220084/whats-the-best-method-to-maintain-or-measure-how-well-sorted-a-collection-is-so/220095#2200951Answer by Doug T. for Whats the best method to maintain or measure how well sorted a collection is so we can choose best sort algorithm?Doug T.2008-10-20T21:55:26Z2008-10-20T21:55:26Z<p>One propsed solution:</p>
<p>Maintain the number of operations (insertions/deletions) performed since the last sort. The higher this number, the more unsorted the collection probably is.</p>
http://stackoverflow.com/questions/220084/whats-the-best-method-to-maintain-or-measure-how-well-sorted-a-collection-is-so/220099#2200991Answer by Adam Rosenfield for Whats the best method to maintain or measure how well sorted a collection is so we can choose best sort algorithm?Adam Rosenfield2008-10-20T21:57:52Z2008-10-20T21:57:52Z<p>If you don't know anything <em>a priori</em> about the collection, any time spent trying to instrument its sortedness will be far greater than the savings you would get by picking the optimal sorting algorithm.</p>
<p>If, on the other hand, you're going to be sorting many data sets that all have similar amounts of sortedness, you can measure the first dataset, pick an algorithm, and then use that one for all subsequent data sets.</p>
http://stackoverflow.com/questions/220084/whats-the-best-method-to-maintain-or-measure-how-well-sorted-a-collection-is-so/220102#2201022Answer by Jason Cohen for Whats the best method to maintain or measure how well sorted a collection is so we can choose best sort algorithm?Jason Cohen2008-10-20T21:58:05Z2008-10-20T21:58:05Z<p>Augmenting @Doug:</p>
<p>A deletion can never make the list <em>less</em> sorted, so you don't have to track those.</p>
<p>When an insertion happens, compare with the elements around to determine if this insertion was in-order or not. If yes, don't increase the counter. If no, increase the "not sorted" counter.</p>
<p>Perhaps this is too much of a penalty (i.e. two compares per insert). You could do only one compare for a more fuzzy result? Or I do like the idea of just counting inserts.</p>
http://stackoverflow.com/questions/220084/whats-the-best-method-to-maintain-or-measure-how-well-sorted-a-collection-is-so/220105#2201052Answer by Adam Davis for Whats the best method to maintain or measure how well sorted a collection is so we can choose best sort algorithm?Adam Davis2008-10-20T21:58:58Z2008-10-20T21:58:58Z<p>You can measure the frequency of the data - if there are a lot of big changes from item to item, then the data is high frequency, indicating a pretty random distribution.</p>
<p>If the changes are smaller, then the data is low frequency - indicating a non-random distribution.</p>
<p>You can also measure the general trend using a filter - is the average trend measurably downwards or upwards - if downwards you might consider flipping the whole array or using a sort good for 'reversed' data.</p>
<p>There are other measurements you can use the might give yo insight - check out signal processing and see what you can glean.</p>
<p>-Adam</p>
http://stackoverflow.com/questions/220084/whats-the-best-method-to-maintain-or-measure-how-well-sorted-a-collection-is-so/220139#2201392Answer by Vinko Vrsalovic for Whats the best method to maintain or measure how well sorted a collection is so we can choose best sort algorithm?Vinko Vrsalovic2008-10-20T22:16:20Z2008-10-20T22:16:20Z<p>There is the Introspective Sort which does exactly that, sort of...</p>
<p><a href="http://ralphunden.net/content/tutorials/a-guide-to-introsort/" rel="nofollow">http://ralphunden.net/content/tutorials/a-guide-to-introsort/</a></p>
http://stackoverflow.com/questions/220084/whats-the-best-method-to-maintain-or-measure-how-well-sorted-a-collection-is-so/220153#2201530Answer by Zak for Whats the best method to maintain or measure how well sorted a collection is so we can choose best sort algorithm?Zak 2008-10-20T22:22:59Z2008-10-20T22:22:59Z<p>Well, first check if the collection is sorted by definition, that will always save you a bunch of time :) For the most part, don't bother extending a collection to test if it is sorted during its insert/delete operations, if the collection needs to be sorted, use a collection that is sorted by definition.</p>
<p>If you are trying to extend a collections class to track for sorting, just keep a separate sorted list of pointers to elements in the collection...</p>
<p>Finally , for 99.99% of the time, why bother? Just use a quicksort. If your dataset is small enough that the constant portion of Big O sorting on quicksort is going to override timesavings from bubble sort, the sort will be so fast you shouldn't even waste time asking the question.</p>
<p>Are you really telling me your question is the .01% of sorting that this needs to be addressed?</p>