Best algorithm for determining the high and low in an array of numbers? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T22:17:51Zhttp://stackoverflow.com/feeds/question/217316http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/217316/best-algorithm-for-determining-the-high-and-low-in-an-array-of-numbers9Best algorithm for determining the high and low in an array of numbers?hal100012008-10-20T01:40:22Z2009-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 > high ) {
high = number;
}
if ( low == 1 ) {
low = high;
}
if ( number < 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-6Answer by Aaron Maenpaa for Best algorithm for determining the high and low in an array of numbers?Aaron Maenpaa2008-10-20T01:44:12Z2008-10-20T01:44:12Z<p>In python:</p>
<pre><code>>>> seq = [1, 2, 3, 4, 5, 6, 7]
>>> max(seq)
7
>>> min(seq)
1
</code></pre>
http://stackoverflow.com/questions/217316/best-algorithm-for-determining-the-high-and-low-in-an-array-of-numbers/217322#2173229Answer by jjnguy for Best algorithm for determining the high and low in an array of numbers?jjnguy2008-10-20T01:44:32Z2008-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#2173240Answer by mipadi for Best algorithm for determining the high and low in an array of numbers?mipadi2008-10-20T01:44:52Z2008-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 < low:
low = n
if n > 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#21732624Answer by nickf for Best algorithm for determining the high and low in an array of numbers?nickf2008-10-20T01:47:21Z2008-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 < l; ++i) {
if (myArray[i] > high) {
high = myArray[i];
} else if (myArray[i] < 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 > high) {
high = val;
} else if (val < low) {
low = val;
}
}
</code></pre>
http://stackoverflow.com/questions/217316/best-algorithm-for-determining-the-high-and-low-in-an-array-of-numbers/217327#2173278Answer by jeremy Ruten for Best algorithm for determining the high and low in an array of numbers?jeremy Ruten2008-10-20T01:47:51Z2008-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 > high ) {
high = number;
}
if ( number < low ) {
low = number;
}
}
</code></pre>
http://stackoverflow.com/questions/217316/best-algorithm-for-determining-the-high-and-low-in-an-array-of-numbers/217330#2173307Answer by Schwern for Best algorithm for determining the high and low in an array of numbers?Schwern2008-10-20T01:52:28Z2008-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 & min
my $max = $list[0];
my $min = $list[0];
for my $num (@list) {
$max = $num if $num > $max;
$min = $num if $num < $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#2174031Answer by Andrew Hedges for Best algorithm for determining the high and low in an array of numbers?Andrew Hedges2008-10-20T02:56:38Z2008-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#2175083Answer by Drew Hall for Best algorithm for determining the high and low in an array of numbers?Drew Hall2008-10-20T04:13:44Z2008-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<int, int> minmax(int* a, int n)
{
int low = std::numeric_limits<int>::max();
int high = std::numeric_limits<int>::min();
for (int i = 0; i < n-1; i += 2) {
if (a[i] < a[i+i]) {
if (a[i] < low) {
low = a[i];
}
if (a[i+1] > high) {
high = a[i+1];
}
}
else {
if (a[i] > high) {
high = a[i];
}
if (a[i+1] < low) {
low = a[i+1];
}
}
}
// Handle last element if we've got an odd array size
if (a[n-1] < low) {
low = a[n-1];
}
if (a[n-1] > 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#2181163Answer by pawel for Best algorithm for determining the high and low in an array of numbers?pawel2008-10-20T11:36:45Z2008-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#2370483Answer by mdkess for Best algorithm for determining the high and low in an array of numbers?mdkess2008-10-25T21:33:59Z2008-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#2371582Answer by Darius Bacon for Best algorithm for determining the high and low in an array of numbers?Darius Bacon2008-10-25T22:56:13Z2008-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 <= i; i -= 2) {
y = A[i+1];
x = A[i];
if (x < y) {
if (x < low) {
low = x;
}
if (high < y) {
high = y;
}
} else {
if (y < low) {
low = y;
}
if (high < x) {
high = x;
}
}
}
if (i === -1) {
x = A[0];
if (high < x) {
high = x;
} else if (x < low) {
low = x;
}
}
return [low, high];
}
for (var i = 0; i < 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#8327911Answer by fearphage for Best algorithm for determining the high and low in an array of numbers?fearphage2009-05-07T03:35:46Z2009-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#17171660Answer by NeO for Best algorithm for determining the high and low in an array of numbers?NeO2009-11-11T18:23:48Z2009-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]>a[h])
swap(&a[l],&a[h]);
for(i=2;i<9;i++)
{
if(a[i]<a[l])
{
swap(&a[i],&a[l]);
}
if(a[i]>a[h])
{
swap(&a[i],&a[h]);
}
}
printf("Low: %d High: %d",a[0],a[1]);
</code></pre>