Best algorithm for determining the high and low in an array of numbers? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T22:17:51Z http://stackoverflow.com/feeds/question/217316 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/217316/best-algorithm-for-determining-the-high-and-low-in-an-array-of-numbers 9 Best algorithm for determining the high and low in an array of numbers? hal10001 2008-10-20T01:40:22Z 2009-11-11T18:23:48Z <p>I am using pseudo-code here, but this is in JavaScript. With the most efficient algorithm possible I am trying to find the high and low given an array of positive whole numbers. This is what I came up with, but I don't think it is probably best, and was just wondering if anyone has any other suggestions.</p> <pre><code>var low = 1; var high = 1; for ( loop numbers ) { if ( number &gt; high ) { high = number; } if ( low == 1 ) { low = high; } if ( number &lt; low ) { low = number; } } </code></pre> http://stackoverflow.com/questions/217316/best-algorithm-for-determining-the-high-and-low-in-an-array-of-numbers/217320#217320 -6 Answer by Aaron Maenpaa for Best algorithm for determining the high and low in an array of numbers? Aaron Maenpaa 2008-10-20T01:44:12Z 2008-10-20T01:44:12Z <p>In python:</p> <pre><code>&gt;&gt;&gt; seq = [1, 2, 3, 4, 5, 6, 7] &gt;&gt;&gt; max(seq) 7 &gt;&gt;&gt; min(seq) 1 </code></pre> http://stackoverflow.com/questions/217316/best-algorithm-for-determining-the-high-and-low-in-an-array-of-numbers/217322#217322 9 Answer by jjnguy for Best algorithm for determining the high and low in an array of numbers? jjnguy 2008-10-20T01:44:32Z 2008-10-20T01:44:32Z <p>You have to do it in O(n) time because you need to loop through all of the elemnts to check them. Unless they are already sorted.</p> <p>In other words you need to loop through all elements and to the max and min check like you have.</p> <p>Sorting is usually at best O(n*log(n)). Thus it is slower than a single sweep through.</p> http://stackoverflow.com/questions/217316/best-algorithm-for-determining-the-high-and-low-in-an-array-of-numbers/217324#217324 0 Answer by mipadi for Best algorithm for determining the high and low in an array of numbers? mipadi 2008-10-20T01:44:52Z 2008-10-20T01:44:52Z <p>Assuming the list isn't already sorted, that's about the best you can do. You can save yourself a comparison by doing the following (in pseudocode):</p> <pre><code>low = +INFINITY high = -INFINITY for each n in numbers: if n &lt; low: low = n if n &gt; high: high = n </code></pre> <p>This is an O(n) operation, which is basically the best you can do.</p> http://stackoverflow.com/questions/217316/best-algorithm-for-determining-the-high-and-low-in-an-array-of-numbers/217326#217326 24 Answer by nickf for Best algorithm for determining the high and low in an array of numbers? nickf 2008-10-20T01:47:21Z 2008-10-21T07:15:28Z <p>initialise the high and low to be the first element. makes a lot more sense than picking an arbitrarily "high" or "low" number.</p> <pre><code>var myArray = [...], low = myArray[0], high = myArray[0] ; // start looping at index 1 for (var i = 1, l = myArray.length; i &lt; l; ++i) { if (myArray[i] &gt; high) { high = myArray[i]; } else if (myArray[i] &lt; low) { low = myArray[i]; } } </code></pre> <p>or, avoiding the need to lookup the array multiple times:</p> <pre><code>for (var i = 1, val; (val = myArray[i]) !== undefined; ++i) { if (val &gt; high) { high = val; } else if (val &lt; low) { low = val; } } </code></pre> http://stackoverflow.com/questions/217316/best-algorithm-for-determining-the-high-and-low-in-an-array-of-numbers/217327#217327 8 Answer by jeremy Ruten for Best algorithm for determining the high and low in an array of numbers? jeremy Ruten 2008-10-20T01:47:51Z 2008-10-20T01:47:51Z <p>Your example is pretty much the most efficient algorithm but obviously it won't work when <em>all</em> the numbers are less than 1 or greater than 1. This code will work in those cases:</p> <pre><code>var low = numbers[0]; // first number in array var high = numbers[0]; // first number in array for ( loop numbers ) { if ( number &gt; high ) { high = number; } if ( number &lt; low ) { low = number; } } </code></pre> http://stackoverflow.com/questions/217316/best-algorithm-for-determining-the-high-and-low-in-an-array-of-numbers/217330#217330 7 Answer by Schwern for Best algorithm for determining the high and low in an array of numbers? Schwern 2008-10-20T01:52:28Z 2008-10-20T23:52:58Z <p>If the list is small (where "small" is less than a few thousand elements) and you don't do it much (where "much" is less than a few thousand times) it doesn't matter. <strong>Profile your code first</strong> to find the real bottleneck before you worry about optimizing your max/min algorithms.</p> <p>Now to answer the question you asked.</p> <p>Because there is no way to avoid looking at every element of the list, a linear search is the most efficient algorithm. It takes N time, where N is the number of elements in the list. Doing it all in one loop is more efficient than calling max() then min() (which takes 2*N time). So your code is basically correct, though it fails to account for negative numbers. Here it is in Perl.</p> <pre><code># Initialize max &amp; min my $max = $list[0]; my $min = $list[0]; for my $num (@list) { $max = $num if $num &gt; $max; $min = $num if $num &lt; $min; } </code></pre> <p>Sorting and then grabbing the first and last element is the least efficient. It takes N * log(N) where N is the number of elements in the list.</p> <p>The most efficient min/max algorithm is one where min/max is recalculated every time an element is added or taken away from the list. In effect, caching the result and avoiding a linear search each time. The time spent on this is then the number of times the list is changed. It takes, at most, M time, where M is the number of changes no matter how many times you call it.</p> <p>To do that, you might consider a search tree which keeps its elements in order. Getting the min/max in that structure is O(1) or O(log[n]) depending what tree style you use.</p> http://stackoverflow.com/questions/217316/best-algorithm-for-determining-the-high-and-low-in-an-array-of-numbers/217403#217403 1 Answer by Andrew Hedges for Best algorithm for determining the high and low in an array of numbers? Andrew Hedges 2008-10-20T02:56:38Z 2008-10-20T02:56:38Z <p>The only further optimization I would suggest is optimizing the loop itself. It's faster to count down than to count up in JavaScript.</p> http://stackoverflow.com/questions/217316/best-algorithm-for-determining-the-high-and-low-in-an-array-of-numbers/217508#217508 3 Answer by Drew Hall for Best algorithm for determining the high and low in an array of numbers? Drew Hall 2008-10-20T04:13:44Z 2008-10-20T04:13:44Z <p>You can do it in O(3n/2) (vs O(2n)) time by comparing adjacent elements pairwise first, then comparing the smaller to min and the larger to max. I don't know javascript, but here it is in C++:</p> <pre><code>std::pair&lt;int, int&gt; minmax(int* a, int n) { int low = std::numeric_limits&lt;int&gt;::max(); int high = std::numeric_limits&lt;int&gt;::min(); for (int i = 0; i &lt; n-1; i += 2) { if (a[i] &lt; a[i+i]) { if (a[i] &lt; low) { low = a[i]; } if (a[i+1] &gt; high) { high = a[i+1]; } } else { if (a[i] &gt; high) { high = a[i]; } if (a[i+1] &lt; low) { low = a[i+1]; } } } // Handle last element if we've got an odd array size if (a[n-1] &lt; low) { low = a[n-1]; } if (a[n-1] &gt; high) { high = a[n-1]; } return std::make_pair(low, high); } </code></pre> http://stackoverflow.com/questions/217316/best-algorithm-for-determining-the-high-and-low-in-an-array-of-numbers/218116#218116 3 Answer by pawel for Best algorithm for determining the high and low in an array of numbers? pawel 2008-10-20T11:36:45Z 2008-10-20T11:36:45Z <pre><code>var numbers = [1,2,5,9,16,4,6]; var maxNumber = Math.max.apply(null, numbers); var minNumber = Math.min.apply(null, numbers); </code></pre> http://stackoverflow.com/questions/217316/best-algorithm-for-determining-the-high-and-low-in-an-array-of-numbers/237048#237048 3 Answer by mdkess for Best algorithm for determining the high and low in an array of numbers? mdkess 2008-10-25T21:33:59Z 2008-10-25T21:33:59Z <p>nickf's algorithm is not the best way to do this. In the worst case, nickf's algorithm does 2 compares per number, for a total of 2n - 2.</p> <p>We can do a fair bit better. When you compare two elements a and b, if a > b we know that a is not the min, and b is not the maximum. This way we use all of the available information to eliminate as many elements as we can. For simplicity, suppose we have an even number of elements.</p> <p>Break them into pairs: (a1, a2), (a3, a4), etc.</p> <p>Compare them, breaking them into a set of winners and losers - this takes n/2 compares, giving us two sets of size n/2. Now find the max of the winners, and the min of the losers.</p> <p>From above, finding the min or the max of n elements takes n-1 compares. Thus the runtime is: n/2 (for the initial compares) + n/2 - 1 (max of the winners) + n/2 - 1 (min of the losers) = n/2 + n/2 + n/2 -2 = 3n/2 - 2. If n is odd, we have one more element in each of the sets, so the runtime will be 3n/2</p> <p>In fact, we can prove that this is the fastest that this problem can be possibly be solved by any algorithm.</p> <p>An example:</p> <p>Suppose our array is 1, 5, 2, 3, 1, 8, 4 Divide into pairs: (1,5), (2,3) (1,8),(4,-). Compare. The winners are: (5, 3, 8, 4). The losers are (1, 2, 1, 4).</p> <p>Scanning the winners gives 8. Scanning the losers gives 1.</p> http://stackoverflow.com/questions/217316/best-algorithm-for-determining-the-high-and-low-in-an-array-of-numbers/237158#237158 2 Answer by Darius Bacon for Best algorithm for determining the high and low in an array of numbers? Darius Bacon 2008-10-25T22:56:13Z 2008-10-25T23:09:49Z <p>Trying these snippets out for real on V8, Drew Hall's algorithm runs in 2/3 of the time of nickf's, as predicted. Making the loop count down instead of up cuts it to about 59% of the time (though that's more implementation-dependent). Only lightly tested:</p> <pre><code>var A = [ /* 100,000 random integers */]; function minmax() { var low = A[A.length-1]; var high = A[A.length-1]; var i, x, y; for (i = A.length - 3; 0 &lt;= i; i -= 2) { y = A[i+1]; x = A[i]; if (x &lt; y) { if (x &lt; low) { low = x; } if (high &lt; y) { high = y; } } else { if (y &lt; low) { low = y; } if (high &lt; x) { high = x; } } } if (i === -1) { x = A[0]; if (high &lt; x) { high = x; } else if (x &lt; low) { low = x; } } return [low, high]; } for (var i = 0; i &lt; 1000; ++i) { minmax(); } </code></pre> <p>But man, it's pretty ugly.</p> http://stackoverflow.com/questions/217316/best-algorithm-for-determining-the-high-and-low-in-an-array-of-numbers/832791#832791 1 Answer by fearphage for Best algorithm for determining the high and low in an array of numbers? fearphage 2009-05-07T03:35:46Z 2009-05-07T03:35:46Z <p>Javascript arrays have a native sort function that accepts a function to use for the comparison. You can sort the numbers and just take the head and the tail to get the minimum and maximum.</p> <pre><code>var sorted = arrayOfNumbers.sort(function(a, b) { return a - b; }), ,min = sorted[0], max = sorted[sorted.length -1]; </code></pre> <p>By default, the sort method sorts lexicographically (dictionary order) so that's why you have to pass in a function for it to use to get numerical sorting. The function you pass in needs to return 1, -1, or 0 to determine the sort order.</p> <pre><code>// standard sort function function sorter(a, b) { if (/* some check */) return -1; // a should be left of b if (/*some other check*/) return 1; // a should be to the right of b return 0; // a is equal to b (no movement) } </code></pre> <p>In the case of numbers, you can merely subtract the second from the first param to determine the order. </p> <pre><code>var numbers = [5,8,123,1,7,77,3.14,-5]; // default lexicographical sort numbers.sort() // -5,1,123,3.14,5,7,77,8 // numerical sort numbers.sort(function(a, b) { return a - b; }) // -5,1,123,3.14,5,7,77,8 </code></pre> http://stackoverflow.com/questions/217316/best-algorithm-for-determining-the-high-and-low-in-an-array-of-numbers/1717166#1717166 0 Answer by NeO for Best algorithm for determining the high and low in an array of numbers? NeO 2009-11-11T18:23:48Z 2009-11-11T18:23:48Z <p>this algorithm works for O(n) and no more extra memory needed to store elements...</p> <pre><code>enter code here int l=0,h=1,index,i=3; if(a[l]&gt;a[h]) swap(&amp;a[l],&amp;a[h]); for(i=2;i&lt;9;i++) { if(a[i]&lt;a[l]) { swap(&amp;a[i],&amp;a[l]); } if(a[i]&gt;a[h]) { swap(&amp;a[i],&amp;a[h]); } } printf("Low: %d High: %d",a[0],a[1]); </code></pre>