【POJ 2503】Babelfish(字符串)

给定字典,再询问。

字典与询问之间有一个空行。

cin.peek()是一个指针指向当前字符。

#include<iostream>
#include<string>
#include<map>
using namespace std;
map<string, string>dic;
string s, t;
int f;
int main()
{
    ios::sync_with_stdio(false);
    while(cin >> s)
        if(cin.peek() == '\n')//指针当前指向\n
            if(!f)
            {
                f = 1;
                dic[s] = t;//当前读入的s是外星文,刚才读入的t是对应的英文
            }
            else
                cout << ((t = dic[s]) != "" ? t : "eh" ) << "\n";
        else//未换行说明s是字典的英文
        {
            f = 0;//f=0代表下一个要读外星文
            t = s;
        }
}

 

处理空行的技巧

#include<cstdio>
#include<algorithm>
#include<cstring>
using namespace std;
#define N 100005
#define M 15
char s[N];
int c;
struct mydic
{
    char zh[M];//外星文
    char en[M];//英文
} dic[N];
int cmp(const mydic &a, const mydic &b)
{
    return strcmp(a.zh, b.zh) >= 0;
}
void  solve()
{
    int l = 0, r = c;
    while(l < r)
    {
        int m = r+l >> 1;
        int f = strcmp(s, dic[m].zh);
        if(f == 0)
        {
            printf("%s\n", dic[m].en);
            return;
        }
        if(f < 0)
            l = m + 1;
        else
            r = m;
    }
    printf("eh\n");
}
int main()
{
    while(gets(s))
    {
        if(!s[0])break;//读到空行
        sscanf(s,"%s%s",dic[c].en,dic[c].zh);
        c++;
    }
    sort(dic, dic + c, cmp);
    while(gets(s))
        solve();
}

 

  

  

转载于:https://www.cnblogs.com/flipped/p/5723011.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值