1

我需要一次迭代中未排序数组中的第二个最大元素。例如:数组是 3 9 8 2 0 -4 87 45 3 2 1 0 答案应该是 45 ,在一次迭代中找到最大元素非常简单,但是如何在同一迭代中找到第二个最大值,或者恒定时间在数组的堡垒迭代之后。

4

3 回答 3

2
int sz = arr.size();
assert(sz >= 2);
int maxElem = arr[0];
int secElem = arr[1];
if (maxElem < secElem) swap(maxElem, secElem);

for (int i = 2; i < sz; ++i) {
    if (arr[i] > maxElem) {
        secElem = maxElem;
        maxElem = arr[i];
    } else if (arr[i] == maxElem) {
        secElem = maxElem;
    } else if (arr[i] < maxElem && arr[i] > secElem)) {
        secElem = arr[i];
    }
}
于 2014-08-27T04:43:32.413 回答
1
for each element:
  if element is bigger than max, max shifts to second-max, element becomes max
  else if element is bigger than second-max, element becomes second-max
于 2014-08-27T04:34:02.320 回答
0
function MathLib()
{
    this.getSecondMax=function(args)
    {
        var max = 0;
        var secondMax = 0;
        for(var i=0;i<arguments.length;i++)
        {
            if(arguments[i]>max)
            {
                secondMax = max;
                max = arguments[i];
            }
            else
            {
                if(secondMax<arguments[i])
                {
                    secondMax = arguments[i];
                }
            }
        }
        return secondMax;
    }
}
于 2015-02-10T19:18:36.147 回答