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

I have an array of ints. I want to get the second highest number in that array. Is there an easy way to do this?

share|improve this question

7 Answers

up vote 11 down vote accepted

Try this (using LINQ):

int secondHighest = (from number in numbers
                     orderby number descending
                     select number).Skip(1).First();
share|improve this answer
+1..LOL..Thats a good one. – Luke101 Nov 28 '09 at 7:44
You should be able to replace .ToList()[0] with .First(). – Fredrik Mörk Nov 28 '09 at 7:57
Didn't think of that, thanks! – RCIX Nov 28 '09 at 8:20
1  
Anyone able to comment on how efficient this is compared to a raw loop method like @Gene Goykhman's version? – mrnye Nov 28 '09 at 9:14
2  
Does LINQ not have a partial sort? Yes, optimisation should be concentrated at bottlenecks. But if you have a choice of algorithms, and the code for each is about as complicated, you aren't obliged to deliberately pick the slower one in order to avoid "premature optimisation" ;-) – Steve Jessop Nov 28 '09 at 11:33
show 2 more comments

You could sort the array and choose the item at the second index, but the following O(n) loop will be much faster.

int[] myArray = new int[] { 0, 1, 2, 3, 13, 8, 5 };
int largest = int.MinValue;
int second = int.MinValue;
foreach (int i in myArray)
{
    if (i > largest)
    {
    	second = largest;
    	largest = i;
    }
    else if (i > second)
    	second = i;
}

System.Console.WriteLine(second);
share|improve this answer
2  
you may as well initialise largest and second to int.MinValue and make no assumptions ;) – Martin Nov 28 '09 at 12:56

Yes, have 2 vars (first and second) passthrough the array and each time compair what you get with this two cells (always putting the highest on first and the 2nd highest on second) with one pass you will get the 2nd higher on the second var.

share|improve this answer

You don't specify if you want to do this with the minimum complexity.

Assuming your array is unsorted, please see: How to find the kth largest element in an unsorted array of length n in O(n)?

To find Kth largest element in an unsorted array: Build a max heap in O(n). Now remove k elements from the heap; where each removal costs log(n) time to maintain the heap. Total time complexity = O(n + klogn)

To understand building Max heap in O(n) see Binary heap

share|improve this answer
How can the total complexity be O(k log n) when there's an O(n) step? – Jon Skeet Nov 28 '09 at 7:50
Who cares about toal complexity or binary heaps when you can do what you want simply with LINQ? :D – RCIX Nov 28 '09 at 8:58
Thanks Jon. The initial step to build the heap is O(n); subsequent removes are each O(logn). – Mitch Wheat Nov 28 '09 at 9:54
@RCIX: yeah who cares about complexity...until you come up against a few thousans elements and you happen to be using an O(n^2) algorithm! – Mitch Wheat Nov 28 '09 at 9:55
1  
@RCIX: it never matters until it's too late! :) – Mitch Wheat Dec 2 '09 at 8:35
show 1 more comment
    int[] myArray = new int[] { 0, 1, 2, 3, 13, 8, 5 };
    int num1=0, temp=0;
    for (int i = 0; i < myArray.Length; i++)
    {
        if (myArray[i] >= num1)
        {
            num1 = myArray[i];
        }
        else if ((myArray[i] < num1) && (myArray[i] > temp))
        {
            temp = myArray[i];
        }
    }
    Console.WriteLine("The Largest Number is: " + num1);
    Console.WriteLine("The Second Highest Number is: " + temp);
share|improve this answer
1  
This blocks of code results the highest as well as second highest number in an array. – Mukesh Kumar Apr 6 '12 at 9:50
int[] arr = { 1, 8, 4, 5, 12, 2, 5, 6, 7, 1, 90, 100, 56, 8, 34 };

int first, second;
// Assuming the array has at least one element:
first = second = arr[0];
for(int i = 1; i < arr.Length; ++i)
{
  if (first < arr[i])
  {
    // 'first' now contains the 2nd largest number encountered thus far:
    second = first;
    first = arr[i];
  }

}
MessageBox.Show(second.ToString());
share|improve this answer
1  
Your Anwser is wrong. It won't work. – gout Jul 11 '12 at 7:03

max1=0; max2=0;

for( int i=0; i < a.Length; i++) {

 if (arr[i]> max1)
      {
        max2=max1;
        max1=arr[i];
       }
 else if ( a[i]!= max1) && ( a[i] > max2)
       max2[i]=arr[i];

}

share|improve this answer

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.