#include <iostream>
#include <map>
using namespace std;
int main(){
int n;
cin>>n;
map<float,int> m;//保存输入
for(int i=0; i<n; i++){
float tmp;
cin>>tmp;
m[tmp]++;//次数
}
int max = 0;
float val;
for(map<float,int>::iterator it=m.begin(); it!=m.end(); it++){
if(it->second > max){
//it->first得到key,it->second得到value
max = it->second;
val = it->first;
}
}
cout<<val;
return 0;
}
统计一组数据中出现次数最多的数(map实现)
原文作者:liubin477
原文地址: https://blog.csdn.net/qq_36668065/article/details/80154260
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
原文地址: https://blog.csdn.net/qq_36668065/article/details/80154260
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。