本题不难,选好存储工具。注意俩点
1.map中遍历使用迭代器。
for(map<int,int>::iterator it=mp.begin();it!=mp.end();it++)
it->first是键,it->second是值
2.map中寻找某键对应的值。
mp.find(id)返回值是个迭代器!!!!!!
#include<iostream>
#include<map>
using namespace std;
int main()
{
int m,n;
map<int,int> mp;
int id;
cin>>m>>n;
int max=0,num=0;
for(int i=0;i<n;i++)
{
for(int j=0;j<m;j++)
{
scanf("%d",&id);
if(mp.find(id)!=mp.end())//因为find返回的是迭代器
mp[id]++;
else
mp[id]=1;//是方括号
}
}
for(map<int,int>::iterator it=mp.begin();it!=mp.end();it++)
{
if(it->second>max)
{
max=it->second;
num=it->first;
}
}
printf("%d",num);
}