2013-1-出现次数最多的数
一、题目描述
二、代码
#include <iostream>
#include <cstring>
#include <algorithm>
using namespace std;
const int N = 10010;
int n;
int S[N];
int main() {
cin >> n;
while ( n -- ) {
int x;
cin >> x;
S[x]++;
}
int res = 0;
for ( int i = 1; i < N; i ++ )
if ( s[i] > s[res])
res = i;
cout << res << endl;
return 0;
}
思路
这题打表遍历即可。