HDOJ.1075 What Are You Talking About(map)

What Are You Talking About

点我跳转到题面
点我一起学习STL-MAP

题意分析

首先第一组START-END给出翻译的字典,第二组START-END给出一句话,查找里面出现的单词,若字典中有则输出翻译后的内容,没有则原封不动输出。

代码总览

/*
    Title:HDOJ.1075
    Author:pengwill
    Date:2016-11-21
*/
#include <iostream>
#include <string>
#include <string.h>
#include <map>
#include <stdio.h>
using namespace std;
string s;
char s1[100000],s2[100000];
char str[100000];
int main()
{
    freopen("in.txt","r",stdin);
    typedef map<string,string> mmp;
    mmp mp;
    mmp::iterator iter;
    int i;
    char ch;
    for(i = 0;i<2;i++){
        if(i==0){
            cin>>s1;
            if(strcmp(s1,"START") == 0){
                while(cin>>s1){
                    if(strcmp(s1,"END")==0){
                        break;
                    }else{
                        cin>>s2;
                        mp[s2] = s1;
                    }
                }
            }
        }else if(i == 1){
            cin>>s1;
            if(strcmp(s1,"START") == 0){
                    while(gets(str)){
                        int len = strlen(str),i,judge =2;
                        if(strcmp(str,"END")==0){
                            break;
                        }
                        for(i = 0;i<len;i++){
                            while(str[i]>='a'&&str[i]<='z'){
                                s+=str[i];
                                i++;
                                judge = 1;
                            }
                            if(judge==1){
                                if(mp.count(s)){
                                    iter = mp.find(s);
                                    cout<<iter->second;
                                }else{
                                    if(s.compare("END") == 0){
                                        break;
                                    }else{
                                        cout<<s;
                                    }
                                }
                                judge = 0;
                                s.clear();
                            }
                            cout<<str[i];
                        }
                        if(judge == 1||judge ==0){
                           printf("\n");
                        }
                    }
            }
        }
    }
    return 0;
    fclose(stdin);
}
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值