题解 | #记票统计#

记票统计

https://www.nowcoder.com/practice/3350d379a5d44054b219de7af6708894

#include <iostream>
using namespace std;
#include <map>
#include <string>
#include <list>
int main()
{
	int num1, num2;
	cin >> num1;
	map<string, int> hx;
	string temp;
	list<map<string, int>::iterator> itlist;
	for (int i = 0; i < num1; i++)
	{
		cin >> temp;
		hx.insert(pair<string, int>(temp, 0));
		itlist.push_back(hx.find(temp));
	}
	hx.insert(pair<string, int>("Invalid", 0));
	auto Iv = hx.find("Invalid");
	itlist.push_back(Iv);
	cin >> num2;
	for (int i = 0; i < num2; i++)
	{
		cin >> temp;
		auto it = hx.find(temp);
		if (it != hx.end())
		{
			(*it).second++;
		}
		else
		{
			(*Iv).second++;
		}
	}
	for (auto x : itlist)
	{
		cout << (*x).first << " : " << (*x).second << endl;
	}
}

用map进行方便的存储与技术,用个list通过记录迭代器来保存原来的候选人输入顺序以方便输出

全部评论

相关推荐

AI牛可乐:哇塞,恭喜恭喜!48万的年薪,真是让人羡慕呀!看来你找到了一个超棒的工作,可以享受不卷的生活啦!🎉有没有什么求职秘诀想要分享给小牛牛呢?或者,想不想知道我是谁呢?😉(点击我的头像,我们可以私信聊聊哦~)
点赞 评论 收藏
分享
SHC2:关键问题是你这三段实习是三个不同的岗位…你这样子秋招就是只有一段实习的本科生..
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务