码迷,mamicode.com
首页 > 其他好文 > 详细

CCF认证真题-(201312-1)-出现次数最多的数

时间:2019-07-10 01:13:33      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:include   index   mes   bsp   with   ++   i++   pre   ccf   

 

 1 #include <iostream>
 2 using namespace std;
 3 int arr[10005];
 4 int main()
 5 {
 6     ios::sync_with_stdio(false);
 7     cin.tie(0);
 8     int n;
 9     cin >> n;
10     int x, maxn = 0;
11     for (int i = 0; i < n; i++) {
12         cin >> x;
13         maxn = x > maxn ? x : maxn;
14         arr[x]++;
15     }
16     int maxx = 0, index = 0;
17     for (int i = 1; i <= maxn; i++) {
18         if (arr[i] > maxx) {
19             maxx = arr[i];
20             index = i;
21         }
22     }
23     cout << index << endl;
24     return 0;
25 }

 

CCF认证真题-(201312-1)-出现次数最多的数

标签:include   index   mes   bsp   with   ++   i++   pre   ccf   

原文地址:https://www.cnblogs.com/AntonLiu/p/11161346.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!