Let the Balloon Rise

2020-09-11 00:11:05 浏览数 (1)

题意:就是找到颜色最多的那个气球的颜色并且输出~ 那么颜色和次数之间是有关系的~ 很容易想到用map<string ,int >;

代码语言:javascript复制
#include<bits/stdc  .h>

using namespace std;
int main(){
	map<string,int> count;
	int n;
	int max = 0;
	string pop;
	while(cin>>n && n){
		while(n--){
			string color;
			cin>>color;
			count[color]  ;
			if(count[color] > max){
				max = count[color];
				pop = color;
			}
		}
		cout<<pop<<endl;
		max = 0;
	} 
	return 0;
}

0 人点赞