zoukankan      html  css  js  c++  java
  • UVa 10115 Automatic Editing

    Problem E: Automatic Editing

    Source file: autoedit.{ccppjavapas}
    Input file: autoedit.in
    Output file: autoedit.out

    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

    给定一些替换规则,每条规则为两行输入,第一行为原串,第二行为替换串。

    先在所给的字符找有没有第一条替换规则的原字符串,如果有就将它替换为替换串,然后再在新串中继续找有没有第一条规则中的原串,直到找不到为止,再找第二条规则中的原串,直到所有的规则都这样替换完

     1 #include<iostream>
     2 #include<cstdio>
     3 #include<cstring>
     4 
     5 using namespace std;
     6 
     7 char trans[20][2][100];
     8 char test[300],temp[300];
     9 
    10 int main()
    11 {
    12     int n;
    13 
    14     while(scanf("%d",&n)==1&&n)
    15     {
    16         getchar();
    17 
    18         for(int i=1;i<=n;i++)
    19         {
    20             gets(trans[i][0]);
    21             gets(trans[i][1]);
    22         }
    23         gets(test);
    24 
    25         for(int i=1;i<=n;i++)
    26         {
    27             bool sign=true;
    28 
    29             while(sign)
    30             {
    31                 sign=false;
    32 
    33                 char *pos=temp;
    34 
    35                 for(int j=0;test[j]!='';j++)
    36                 {
    37                     if(test[j]==trans[i][0][0])
    38                     {
    39                         int k;
    40                         bool flag=true;
    41                         for(k=0;test[j+k]!=''&&trans[i][0][k]!='';k++)
    42                             if(test[j+k]!=trans[i][0][k])
    43                             {
    44                                 flag=false;
    45                                 break;
    46                             }
    47                         if(trans[i][0][k]=='')
    48                         {
    49                             sign=true;
    50                             sprintf(pos,"%s",trans[i][1]);
    51                             pos+=strlen(trans[i][1]);
    52                             sprintf(pos,"%s",&test[j+k]);
    53                             sprintf(test,"%s",temp);
    54                             break;
    55                         }
    56                         else
    57                         {
    58                             sprintf(pos,"%c",test[j]);
    59                             pos++;
    60                         }
    61                     }
    62                     else
    63                     {
    64                         sprintf(pos,"%c",test[j]);
    65                         pos++;
    66                     }
    67                 }
    68             }
    69         }
    70 
    71         printf("%s
    ",test);
    72     }
    73 
    74     return 0;
    75 }
    [C++]
  • 相关阅读:
    ASP.NET中如何防范SQL注入式攻击?(转)
    打开D盘时速度奇慢?
    Visual Studio 2008 下载地址
    如何利用XML文件,做为配置参数?
    如何将一个表中的数据INSERT INTO 到另一个表中?
    拖延交货或惹万人诉讼 消费者称戴尔态度恶劣
    NHibernate Linq中Null值排序的解决方法
    NHibernate3剖析:Query篇之NHibernate.Linq标准查询
    Nhibernate出现No row with the given identifier exists问题的产生原因及解决方法
    Nhibernate使用动态Expression的问题解决
  • 原文地址:https://www.cnblogs.com/lzj-0218/p/3527256.html
Copyright © 2011-2022 走看看