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

map 小用法

时间:2014-12-04 08:52:40      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:style   io   ar   color   os   sp   on   cti   ad   

#include <cstdio>
#include <cstring>
#include <map>
#include <algorithm>
using namespace std;
int main(){
	int n,a;
	while(scanf("%d",&n)==1){
		int maxx=-1;
		map<int ,int >q;
		while(n--){
			scanf("%d",&a);
            q[a]++;
            if(q[a]>maxx){
            	maxx=q[a];
            }
		}
		printf("%d\n",maxx);
	}
}

map 小用法

标签:style   io   ar   color   os   sp   on   cti   ad   

原文地址:http://blog.csdn.net/u013076044/article/details/41707899

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