码迷,mamicode.com
首页 > 其他好文 > 详细

uva 10115 - Automatic Editing

时间:2015-07-16 22:04:42      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:

#include<iostream>
#include<cctype>
#include<cstdlib>
#include<cstdio>
#include<cstring>
using namespace std;

string pa[22];
string des;

int main(){
    int n;
    while(cin >> n && n != 0){
        cin.ignore();
        for(int i = 0; i < 2*n; i += 2){
            getline(cin,pa[i]);
            getline(cin,pa[i+1]);
        }
        getline(cin,des);

        for(int i = 0; i < 2*n; i += 2){
            int pos;
            while((pos = des.find(pa[i])) != string::npos){           //每次从头开始找
                des.replace(pos,pa[i].length(),pa[i+1]);
            }
        }
        cout << des << endl;
    }

    return 0;
}

 

uva 10115 - Automatic Editing

标签:

原文地址:http://www.cnblogs.com/yong-hua/p/4652420.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!