zoukankan      html  css  js  c++  java
  • UVA 10115 子符串替换

    Text-processing tools like awk and sed allow you to automatically perform a sequence of editing operations based on a script. For this problem we consider the specific case in which we want to perform a series of string replacements, within a single line of text, based on a fixed set of rules. Each rule specifies the string to find, and the string to replace it with, as shown below.

    Rule Find Replace-by
    1. ban bab
    2. baba be
    3. ana any
    4. ba b hind the g

    To perform the edits for a given line of text, start with the first rule. Replace the first occurrence of the find string within the text by thereplace-by string, then try to perform the same replacement again on the new text. Continue until the find string no longer occurs within the text, and then move on to the next rule. Continue until all the rules have been considered. Note that (1) when searching for a findstring, you always start searching at the beginning of the text, (2) once you have finished using a rule (because the find string no longer occurs) you never use that rule again, and (3) case is significant.

    For example, suppose we start with the line

    banana boat

    and apply these rules. The sequence of transformations is shown below, where occurrences of a find string are underlined and replacements are boldfaced. Note that rule 1 was used twice, then rule 2 was used once, then rule 3 was used zero times, and then rule 4 was used once.

      Before After
      banana boat babana boat
      babana boat bababa boat
      bababa boat beba boat
      beba boat behind the goat

    Input

    The input contains one or more test cases, followed by a line containing only 0 (zero) that signals the end of the file. Each test case begins with a line containing the number of rules, which will be between 1 and 10. Each rule is specified by a pair of lines, where the first line is the find string and the second line is the replace-by string. Following all the rules is a line containing the text to edit. 

    Output

    For each test case, output a line containing the final edited text.

    Both find and replace-by strings will be at most 80 characters long. Find strings will contain at least one character, but replace-by strings may be empty (indicated in the input file by an empty line). During the edit process the text may grow as large as 255 characters, but the final output text will be less than 80 characters long.

    Sample Input

    4
    ban
    bab
    baba
    be
    ana
    any
    ba b
    hind the g
    banana boat
    1
    t
    sh
    toe or top
    0

    Sample Output

    behind the goat
    shoe or shop

    Hint

    when u read a line of string after an int, u can use following codes, like

    scanf("%d",&t);getchar();gets(str);

    or u may read some unexpected words

     

    题意:给定多组的字符串和用来替换他的字符串的规则,在一段话中按照替换规则替换,如果找到就进行替换,需要注意的是如果前面的规则已经运用完毕,后面就不能拿过来再用;

    解题思路:用stl暴力一下;

     1 #include<iostream>
     2 #include<cstdio>
     3 #include<cstring>
     4 #include<cstdlib>
     5 #include<algorithm>
     6 #include<string>
     7 using namespace std;
     8 int main()
     9 {
    10     ios::sync_with_stdio(false);
    11  // freopen("in.txt","r",stdin);
    12     int n;
    13     string str1[11],str2[11],str3;
    14     while(1){
    15           cin>>n;
    16             if(n==0) break;
    17         string nn;
    18         getline(cin,nn);
    19         for(int i=0;i<n;i++)
    20         {
    21             getline(cin,str1[i]);
    22             getline(cin,str2[i]);
    23         }
    24         getline(cin,str3);
    25         bool flag;int num=0;
    26         while(1){
    27             flag=1;
    28             for(int i=num;i<n;i++)
    29             {
    30                 if(i>num) num=i;
    31                 int first=str3.find(str1[i],0);
    32                 if(first!=string::npos)
    33                 {
    34                     flag=0;
    35                     str3.replace(first, str1[i].size(),str2[i]);
    36                     break;
    37                 }
    38             }
    39             if(flag) break;
    40         }
    41         cout<<str3<<endl;
    42     }
    43     return 0;
    44 }


  • 相关阅读:
    341. Flatten Nested List Iterator
    667. Beautiful Arrangement II
    953. Verifying an Alien Dictionary
    1704. Determine if String Halves Are Alike
    MySQL数据库的数据类型详解【转】
    Dart之数组(List)的相关方法总结【转】
    Flutter解决点击非输入框时关闭键盘问题及TextFormField焦点切换问题【转】
    Flutter Switch开关【转】
    Image Picker
    Flutter按钮添加背景图片及文字【转】
  • 原文地址:https://www.cnblogs.com/codeyuan/p/4326853.html
Copyright © 2011-2022 走看看