• uva10115


    Automatic Editing

    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 the replace-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 find string, you always start searching at the beginning of the text, (2) once you have finished using a rule (because thefind 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

    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. 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.

    The first test case in the sample input below corresponds to the example shown above.

    Example input:

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

    Example output:

    behind the goat
    shoe or shop

     

    题目大意:例如第一组数据,有4种规则。1.ban->bab  2.baba->be  3.ana->any  4.ba b->hind the g。

    输入一个字符串,先使用规则1,改变字符串,直到该串中没有ban,然后使用规则2……,3……,4……。输出此时的字符串。

     1 #include<cstdio>
     2 #include<string.h>
     3 #include<string>
     4 
     5 int main()
     6 {
     7     int n,i;
     8     char find[15][85],replace[15][85],s[280],temp[280];
     9     while(scanf("%d",&n) != EOF && n)
    10     {
    11         getchar();
    12         for(i=0;i<n;i++)
    13         {
    14             gets(find[i]);
    15             gets(replace[i]);
    16         }
    17         gets(s);
    18         for(i=0;i<n;i++)
    19         {
    20             char *p,*q;
    21             while(p = strstr(s,find[i]) ,p != NULL)  //strstr函数:从字符串s中查找是否有符串find[i],如果有,
    22             {                                      //从s中的find[i]位置起,返回s的指针,如果没有,返回null。
    23                 q=p+strlen(find[i]);
    24                 strcpy(temp,replace[i]);
    25                 strcat(temp,q);
    26                 strcpy(p,temp);        //p是指向s中某个位置的指针,p改变了,s也改变了(从p所指的位置开始改变)
    27             }
    28         }
    29         puts(s);
    30     }
    31     return 0;
    32 }
  • 相关阅读:
    PAT2019顶级7-2:美丽的序列(线段树+DP)
    ZOJ2112 Dynamic Rank(可持久化线段树套树状数组)
    CF1353E K-periodic Garland(动态规划)
    CF1353D Constructing the array(优先队列)
    HDU2069 Coin Change(基础DP)
    surf(树状数组+DP)
    双倍快乐(回文树)
    ZOJ3591 Nim(博弈论)
    HDU6601 Keep On EveryThing But Triangle(可持久化线段树)
    HDU6599 I Love Palindrome String(回文树)
  • 原文地址:https://www.cnblogs.com/youdiankun/p/3642180.html
Copyright © 2020-2023  润新知