leetcode--一個for迴圈找出陣列最大和次最大值
阿新 • • 發佈:2019-02-08
//給定一個數組,找出陣列中最大值和次最大值。要求在一個for迴圈裡實現
#include "stdafx.h"
#include<iostream>
using namespace std;
void select_max(const int*a, int size, int&nMax, int& nSecondMax)
{
nMax = a[0];
nSecondMax = a[0];
for (int i = 0; i < size; i++)
{
if (nMax < a[i])
{
nSecondMax = nMax;//注意前後順序,如果是第三個最大值,則在最上邊,然後到次最大,。。。
nMax = a[i];
}
else if (nSecondMax < a[i])
{
nSecondMax = a[i];
}
}
}
int _tmain(int argc, _TCHAR* argv[])
{
int a[] = { 1, 5, 48, 46,1,4,7,5};
int nMax, nSecondMax;
select_max(a, sizeof(a) / sizeof(int), nMax, nSecondMax); //每個int佔4個位元組,陣列沒有以\0結束,因此sizeof(a) / sizeof(int)可以表示陣列中的元素個數
cout << nMax << endl;
cout << nSecondMax << endl;
cout << sizeof(a) << endl;
return 0;
}