每日OJ_牛客_电话号码(简单哈希模拟)

目录

牛客_电话号码(简单哈希模拟)

解析代码


牛客_电话号码(简单哈希模拟)

电话号码__牛客网


解析代码

#include <iostream>
#include <unordered_map>
#include <set>
#include <string>
using namespace std;

int main()
{
	//建立映射:字母->数字
	string alpha = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
	string num = "22233344455566677778889999";
	unordered_map<char, char> mp;
	for (int i = 0; i < alpha.size(); ++i)
	{
		mp[alpha[i]] = num[i];
	}
	set<string> set; // 保存转换之后的结果,去重
	int n = 0;
	while (cin >> n)
	{
		set.clear();
		// 处理n个字符串
		for (int i = 0; i < n; ++i)
		{
			string line;
			cin >> line;
			string curRet; // 建立空的字符串,保存转换之后的电话号码
			for (auto& ch : line) // 处理字符串中的每一个字符
			{
				if (isdigit(ch))
					curRet += ch;
				else if (isupper(ch))
					curRet += mp[ch];
			}
			//转换格式: xxx-xxxx
			curRet = curRet.substr(0, 3) + "-" + curRet.substr(3);
			set.insert(curRet); // 保存结果
		}
		for (auto& str : set)
		{
            cout << str << endl;
        }
		cout << endl;
	}
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

GR鲸鱼

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值