这题用hashTable来写无疑是最简单的,但是为了训练map的套路,《算法笔记》上面饶了弯路, 用map来写,也不算很难。但是这种int对int的映射,在数据并不大的情况下(本题最高到224左右),考试的时候直接开散列,比用map不知道要好到哪去了。
书上的参考代码:
#include <cstdio>
#include <map>
using namespace std;
int main(){
int n,m,col;
scanf("%d %d",&n,&m);
map<int , int > count;
for (int i=0; i<n; i++){
for (int j=0; j<m; j++){
scanf("%d",&col);
if (count.find(col)!=count.end()){
count[col]++;
}else {
count[col]=1;
}
}
}
int k=0, max=0;
for (map<int, int>::iterator it=count.begin(); it!=count.end(); it++){
if (it->second>max){
k=it->first;
max=it->second;
}
}
printf("%d",k);
}
其实后面的找最大值也是作者为了向读者展示Map的用法,强行加上去的,在考试的时候完全没必要写。
简单写法如下:
#include <cstdio>
int hash[(1<<24)+10]={0};
int main(){
int m,n;
scanf("%d %d",&m,&n);
int strict=m*n/2;
for (int i=0; i<n; i++){
for (int j=0; j<m; j++){
int temp;
scanf("%d",&temp);
hash[temp]++;
if (hash[temp]>strict){
printf("%d",temp);
return 0;
}
}
}
}
PAT评测里面,64M 的内存限制,正常情况下,根本用不完,重点还是时间限制,224并不算大,本题用散列完全没问题。