解题思路:
注意事项:
对于char s[20],由于cin >> s是读取到空格处便会结束,也就是对于light red,用cin只能输入light。如果要整个输入一行,则使用cin.getline(s, 20),其中20为这一行的最大长度,也就是你的s的容量,如果容量为30,则cin.getline(s, 30)。
另外,你在cin>>n以后cin.getline(s,30)应该会得到一个空字符串,这是因为整数n后面的换行符还未被输入。
参考代码:
#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <stdio.h>
using namespace std;
vector< pair<string, int> > colourList;
bool checkUnique(const string& s)
{
bool unique = true;
for (int i = 0; i < colourList.size(); i++)
{
if (colourList[i].first == s)
{
unique = false;
break;
}
}
return unique;
}
void addColorCount(const string& color)
{
for (vector< pair<string, int> >::iterator it = colourList.begin(); it < colourList.end(); it++)
{
if ((*it).first == color)
{
(*it).second += 1;
}
}
}
bool cmp(pair<string, int> a, pair<string, int> b)
{
bool ret = false;
if (a.second > b.second)
ret = true;
else if (a.second == b.second)
{
if (a.first < b.first)
{
ret = true;
}
}
return ret;
}
void output()
{
int maxCount = colourList[0].second;
for (vector< pair<string, int> >::iterator it = colourList.begin(); it < colourList.end(); it++)
{
if ((*it).second == maxCount)
{
cout << (*it).first << endl;
}
}
}
int main(int argc, char** argv)
{
freopen("input10.txt", "r", stdin);
int n = 0;
cin >> n;
getchar();
string temp;
for (int i = 0; i < n; i++)
{
getline(cin, temp);
if (checkUnique(temp))
{
pair<string, int> newColor(temp, 1);
colourList.push_back(newColor);
}
else
{
addColorCount(temp);
}
}
sort(colourList.begin(), colourList.end(), cmp);
output();
fclose(stdin);
return 0;
}
0.0分
0 人评分
C语言网提供由在职研发工程师或ACM蓝桥杯竞赛优秀选手录制的视频教程,并配有习题和答疑,点击了解:
一点编程也不会写的:零基础C语言学练课程
解决困扰你多年的C语言疑难杂症特性的C语言进阶课程
从零到写出一个爬虫的Python编程课程
只会语法写不出代码?手把手带你写100个编程真题的编程百练课程
信息学奥赛或C++选手的 必学C++课程
蓝桥杯ACM、信息学奥赛的必学课程:算法竞赛课入门课程
手把手讲解近五年真题的蓝桥杯辅导课程
发表评论 取消回复