Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I get the second largest element from an array in javascript [closed]

Tags:

I have an integer array like this :

arr[20,120,111,215,54,78]; 

I need a function taking an array as its argument and returning the second largest element of that array.

like image 348
Amar Banerjee Avatar asked Jun 11 '13 08:06

Amar Banerjee


People also ask

How do I get the second largest element from an array in JavaScript?

apply(null, arr), // get the max of the array maxi = arr. indexOf(max); arr[maxi] = -Infinity; // replace max in the array with -infinity var secondMax = Math. max. apply(null, arr); // get the new max arr[maxi] = max; return secondMax; };


2 Answers

The most straightforward implementation, without modifying the original array, is to iterate and track the biggest and next biggest:

function nextBiggest(arr) {    let max = -Infinity, result = -Infinity;      for (const value of arr) {      const nr = Number(value)        if (nr > max) {        [result, max] = [max, nr] // save previous max      } else if (nr < max && nr > result) {        result = nr; // new second biggest      }    }      return result;  }    const arr = ['20','120','111','215','54','78'];  console.log(nextBiggest(arr));
like image 179
Ja͢ck Avatar answered Oct 21 '22 09:10

Ja͢ck


Original answer

var secondMax = function (){      var arr = [20, 120, 111, 215, 54, 78]; // use int arrays     var max = Math.max.apply(null, arr); // get the max of the array     arr.splice(arr.indexOf(max), 1); // remove max from the array     return Math.max.apply(null, arr); // get the 2nd max }; 

demo

Update 1

As pointed out by davin the performance could be enhanced by not doing a splice but temporarily replacing the max value with -Infininty:

var secondMax = function (arr){      var max = Math.max.apply(null, arr), // get the max of the array         maxi = arr.indexOf(max);     arr[maxi] = -Infinity; // replace max in the array with -infinity     var secondMax = Math.max.apply(null, arr); // get the new max      arr[maxi] = max;     return secondMax; }; 

Anyway, IMHO the best algorithm is Jack's. 1 pass, with conversion to number. Mine is just short, using builtin methods and only wanted to provide it as an alternative, to show off all the different ways you can achieve the goal.

Update 2

Edge case with multiple values.

As comments pointed it out: this solution "does not work" if we have an array like [3, 3, 5, 5, 5, 4, 4]. On the other hand it would be also a matter of interpretation what we would consider "the 2nd largest element". In the example we have:

  1. 3 elements with the largest value (5) at indices: 2,3,4
  2. 2 elements with the second largest value (4) at indices: 5,6
  3. 2 elements with the second smallest value (3) at indices: 1,2

The 2nd largest element could be interpreted as:

  1. the 2nd (largest element) - 5 at index 3 - assuming that there is an order, and that we aim for a unique value
  2. the (2nd largest) element - 4 at index 5 - assuming that there is an order, and that we aim for a unique value
like image 33
Matyas Avatar answered Oct 21 '22 07:10

Matyas