poj2503

本文介绍了一种利用C++标准库中的map数据结构来高效处理字符串匹配问题的方法。通过读取输入并建立映射关系,可以快速查找并输出对应的结果,适用于初级到中级的数据结构学习者。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

扫扫尾,今天把初级的数据结构都完成了它,进军中级图论,算法导论看得很爽!

这题没啥好说的,map搞定

#include <iostream>
#include <string>
#include <map>
#include <set>

using namespace std;

int main()
{
    string s, a, b;
    map<string, bool> apperance;
    map<string, string>dic;
    while (getline(cin, s) && s != "")
    {
        int pos = s.find(" ");
        a.assign(s, 0, pos);
        b.assign(s, pos+1sizeof(s)-1);
        apperance.insert(make_pair(b, true));
        dic.insert(make_pair(b, a));
    }
    while (cin >> s)
    {
        if (apperance[s])
        {
            cout << dic[s] << endl;
        }
        else
        {
            cout << "eh" << endl;
        }
    }
}


评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值