For an array of size N, what is the # of comparisons required?
|
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
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 |
|||||||||
|
|
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:
|
|||||||||||||||||
|
|
case 1-->9 8 7 6 5 4 3 2 1
|
||||
|
|
|
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:
|
|||
|
|
|
Here is some code that might not be optimal but at least actually finds the 2nd largest element:
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). |
|||
|
|
|
try this.
it should work like a charm. low in complexity. here is a java code.
|
|||||
|
|
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 |
||||
|
|
|||
|
|
|
Sorry, JS code... Tested with the two inputs:
This should have a maximum of a.length*2 comparisons and only goes through the list once. |
||||
|
|
|
Sort the array into ascending order then assign a variable to the (n-1)th term. |
|||||||
|

intspecial case (or string at a real push), it's 0 comparisons... – Steve Jessop Sep 2 '10 at 16:30