UVAOJ 10115 ——Automatic Editing 模拟

来源:互联网 发布:淘宝一折特卖网手表 编辑:程序博客网 时间:2024/04/28 00:49

Automatic Editing

Source file:autoedit.{ccppjavapas}Input file:autoedit.inOutput 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.

RuleFindReplace-by1.banbab2.bababe3.anaany4.ba bhind 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.


BeforeAfterbanana boatbabana boatbabana boatbababa boatbababa boatbeba boatbeba boatbehind 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-bystrings 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:

4banbabbababeanaanyba bhind the gbanana boat1tshtoe or top0

Example output:

behind the goatshoe or shop

一直替换,直到没办法再替换了 就对了,
BeforeAfterbanana boatbabana boatbabana boatbababa boatbababa boatbeba boatbeba boatbehind the goat看懂这个过程  然后模拟就是了。。。。

注释掉的那些就是我一开始错的地方。。。


#include <stdio.h>#include <string.h>struct node{    char fd[85];    char re[85];    int flen;    int rlen;}ls[11];char sr[300];char nls[300];int pdzj(int k,int len){    int j = 0;    for(int i = 0;i < len;i++)    {        if(sr[i] == ls[k].fd[j])        {            j++;            if(j == ls[k].flen)                return i - j + 1;        }        else        {            i = i - j;            j = 0;        }    }    return -1;}void th(int k,int fh,int len){    int x = 0;    for(int i = 0;i < fh;i++)    {        nls[x++] = sr[i];    }    for(int i = 0;i < ls[k].rlen;i++)    {        nls[x++] = ls[k].re[i];    }    for(int i = fh + ls[k].flen;i < len;i++)    {        nls[x++] = sr[i];    }    nls[x] = '\0';    strcpy(sr,nls);}int main(){    int n;    while(scanf("%d",&n),n)    {        getchar();        for(int i = 0;i < n;i++)        {            gets(ls[i].fd);            ls[i].flen = strlen(ls[i].fd);            gets(ls[i].re);            ls[i].rlen = strlen(ls[i].re);        }        gets(sr);        int len = strlen(sr);        int fh;       // while(1)      //  {       //     int flag = 0;            for(int i = 0;i < n;i++)            {                fh = pdzj(i,len);                if(fh != -1)                {                   // flag = 1;                    th(i,fh,len);                    len = len - ls[i].flen + ls[i].rlen;                    i--;                }            }        //    if(!flag)        //        break;      //  }        printf("%s\n",sr);    }    return 0;}



0 0
原创粉丝点击