Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For an array of size N, what is the # of comparisons required?

share|improve this question
1  
How much temporary storage are you allowed? – Michael Myers Sep 2 '10 at 15:40
1  
Is the array already sorted? – Gumbo Sep 2 '10 at 15:42
1  
@Sachin, it would be n*log(n) comparisons. Sorting cannot get faster. – Stargazer712 Sep 2 '10 at 15:47
1  
@Stargazer712: Unless the array is of integers. Then you could radix-sort, with no comparisons at all ;-) – Steve Jessop Sep 2 '10 at 15:57
2  
@Stargazer712: No bounds needed: en.wikipedia.org/wiki/…. Come to think of it, a radix sort still involves looping over the input data, and a loop has to involve a comparison in the termination condition. It needn't be an order comparison, though, just an equality comparison. But you're right, the question says nothing about the data types, so a proper answer has to assume opaque data and a comparator function. If the interviewer instead makes the mistake of posing an int special case (or string at a real push), it's 0 comparisons... – Steve Jessop Sep 2 '10 at 16:30
show 10 more comments

10 Answers

up vote 22 down vote accepted

The optimal algorithm uses n+log n-2 comparisons. Think of elements as competitors, and a tournament is going to rank them.

First, compare the elements, as in the tree

   |
  / \
 |   |
/ \ / \
x x x x

this takes n-1 comparisons and each element is involved in comparison at most log n times. You will find the largest element as the winner.

The second largest element must have lost a match to the winner (he can't lose a match to a different element), so he's one of the log n elements the winner has played against. You can find which of them using log n - 1 comparisons.

The optimality is proved via adversary argument. See http://math.stackexchange.com/questions/1601 or http://compgeom.cs.uiuc.edu/~jeffe/teaching/497/02-selection.pdf or http://www.imada.sdu.dk/~jbj/DM19/lb06.pdf or https://www.utdallas.edu/~chandra/documents/6363/lbd.pdf

share|improve this answer
Query: this will take N + logN -2 comparisons in addition to the initial N - 1 comparisons needed to find the maximum, right? Because without knowing the maximum, how can we know the logN elements that lost a match against the winner. – Jatin Aug 18 '12 at 19:53
@Jatin: No, it takes N+log N-2 in total: N-1 comparisons to find the maximum, and log N-1 comparisons to find the largest element among the log N that lost to the maximal element. – sdcvvc Aug 18 '12 at 20:03
how do I find those logN elements? I can't do that by simply traversing the array while trying to find the maximum. – Jatin Aug 18 '12 at 20:13
Jatin: create a binary tree, and start filling it from the bottom. The leaves are elements of the array. Each internal vertex is maximum of its two children. The number of comparisons you need is the number of internal vertices, which is n-1. Then, look at the "opponents" of the maximal element, those are the log N elements. – sdcvvc Aug 18 '12 at 20:40

You can find the second largest value with at most 2ยท(N-1) comparisons and two variables that hold the largest and second largest value:

largest := numbers[0];
secondLargest := null
for i=1 to numbers.length-1 do
    number := numbers[i];
    if number > largest then
        secondLargest := largest;
        largest := number;
    else
        if number > secondLargest then
            secondLargest := number;
        end;
    end;
end;
share|improve this answer
2  
That's more than N-1. – sdcvvc Sep 2 '10 at 15:47
N-1 is wrong, check i.e. {1,4,2,3,5} – x4u Sep 2 '10 at 15:50
How do you find 2 largest elements in a set of 3 using 2 comparisons? – Maciej Hehl Sep 2 '10 at 15:50
2  
Your algorithm doesn't work for {1,3,2}. It would return 1 instead of 2. – x4u Sep 2 '10 at 15:57
1  
-1. Your algorithm does not work. Try it on the input "3,5,4". – Stargazer712 Sep 2 '10 at 15:59
show 3 more comments

case 1-->9 8 7 6 5 4 3 2 1
case 2--> 50 10 8 25 ........
case 3--> 50 50 10 8 25.........
case 4--> 50 50 10 8 50 25.......

public void second element()  
{
      int a[10],i,max1,max2;  
      max1=a[0],max2=a[1];  
      for(i=1;i<a.length();i++)  
      {  
         if(a[i]>max1)  
          {
             max2=max1;  
             max1=a[i];  
          }  
         else if(a[i]>max2 &&a[i]!=max1)  
           max2=a[i];  
         else if(max1==max2)  
           max2=a[i];  
      }  
}
share|improve this answer

Assuming space is irrelevant, this is the smallest I could get it. It requires 2*n comparisons in worst case, and n comparisons in best case:

arr = [ 0, 12, 13, 4, 5, 32, 8 ]
max = [ -1, -1 ]

for i in range(len(arr)):
     if( arr[i] > max[0] ):
        max.insert(0,arr[i])
     elif( arr[i] > max[1] ):
        max.insert(1,arr[i])

print max[1]
share|improve this answer

Here is some code that might not be optimal but at least actually finds the 2nd largest element:

if( val[ 0 ] > val[ 1 ] )
{
    largest = val[ 0 ]
    secondLargest = val[ 1 ];
}
else
{
    largest = val[ 1 ]
    secondLargest = val[ 0 ];
}

for( i = 2; i < N; ++i )
{
    if( val[ i ] > secondLargest )
    {
        if( val[ i ] > largest )
        {
            secondLargest = largest;
            largest = val[ i ];
        }
        else
        {
            secondLargest = val[ i ];
        }
    }
}

It needs at least N-1 comparisons if the largest 2 elements are at the beginning of the array and at most 2N-3 in the worst case (one of the first 2 elements is the smallest in the array).

share|improve this answer

try this.

max1 = a[0].
max2.
for i = 0, until length:
  if a[i] > max:
     max2 = max1.
     max1 = a[i].
     #end IF
  #end FOR
return min2.

it should work like a charm. low in complexity.

here is a java code.

int secondlLargestValue(int[] secondMax){
int max1 = secondMax[0]; // assign the first element of the array, no matter what, sorted or not.
int max2 = 0; // anything really work, but zero is just fundamental.
   for(int n = 0; n < secondMax.length; n++){ // start at zero, end when larger than length, grow by 1. 
        if(secondMax[n] > max1){ // nth element of the array is larger than max1, if so.
           max2 = max1; // largest in now second largest,
           max1 = secondMax[n]; // and this nth element is now max.
        }//end IF
    }//end FOR
    return max2;
}//end secondLargestValue()
share|improve this answer
1  
did it work? it should – sabbibJAVA Jul 28 '12 at 21:58

Use counting sort and then find the second largest element, starting from index 0 towards the end. There should be at least 1 comparison, at most n-1 (when there's only one element!).

share|improve this answer
This doesn't answer the question, which is about the number of comparisons. The question is for analysis of an algorithm, not just the algorithm itself. – eh9 Nov 9 '12 at 17:38
#include<stdio.h>
main()
{
        int a[5] = {55,11,66,77,72};
        int max,min,i;
        int smax,smin;
        max = min = a[0];
        smax = smin = a[0];
        for(i=0;i<=4;i++)
        {
                if(a[i]>max)
                {
                        smax = max;
                        max = a[i];
                }
                if(max>a[i]&&smax<a[i])
                {
                        smax = a[i];
                }
        }
        printf("the first max element z %d\n",max);
        printf("the second max element z %d\n",smax);
}
share|improve this answer

Sorry, JS code...

Tested with the two inputs:

a = [55,11,66,77,72];
a = [ 0, 12, 13, 4, 5, 32, 8 ];

var first = Number.MIN_VALUE;
var second = Number.MIN_VALUE;
for (var i = -1, len = a.length; ++i < len;) {
    var dist = a[i];
    // get the largest 2
    if (dist > first) {
        second = first;
        first = dist;
    } else if (dist > second) { // && dist < first) { // this is actually not needed, I believe
        second = dist;
    }
}

console.log('largest, second largest',first,second);
largest, second largest 32 13

This should have a maximum of a.length*2 comparisons and only goes through the list once.

share|improve this answer

Sort the array into ascending order then assign a variable to the (n-1)th term.

share|improve this answer
1  
Very inefficient. Requires n*log(n) comparisons by definition. – Stargazer712 Sep 2 '10 at 15:51
and also if the array contains duplicate elements this is bound to fail.. – Baz1nga Aug 10 '12 at 21:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.