UVA10115 Automatic Editing

字符串类型的收关题,1A。

哎,小小总结一下吧。遇到字符串的题,甭多想,一定要用string库。自己编错的概率超大。还有就是标准输入输出。gets(),puts(),printf(),scanf(),getchar(),putchar()...一定要注意他们的区别和用法。

常见要用的函数:

strlen():我很少用吧,不过确实很常用。我一般还是判断'\0'。

strcmp():超级有用,省了不少麻烦。

strcpy()&memcpy():两个搭配使用。

strcat():懒人必备吧,其实自己也可以编出来。

strstr():过去一直忽视的函数,不过作为查找的确很好使。

题目:

Problem E: Automatic Editing

Problem E: Automatic Editing

Source file: autoedit.{c, cpp, java, pas}
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 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

 

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<stdio.h>
 2 #include<string.h>
 3 #include<stdlib.h>
 4 char find[50][100],rep[50][100],str[300],tmp[1000];
 5 int main()
 6 {
 7     int t;
 8     while(scanf("%d",&t)!=EOF)
 9     {
10         if(t==0)
11             break;
12         getchar();
13         int i;
14         for(i=0;i<t;i++)
15         {
16             gets(find[i]);
17             gets(rep[i]);
18         }
19         gets(str);
20         for(i=0;i<t;i++)
21         {
22             char *p,*q;
23             while(p=strstr(str,find[i]),p!=NULL)
24             {
25                 q=p+strlen(find[i]);
26                 strcpy(tmp,rep[i]);
27                 strcat(tmp,q);
28                 strcpy(p,tmp);
29             }
30         }
31         puts(str);
32     }
33     return 0;
34 }

 

 

 

posted @ 2013-01-28 20:16  上白泽慧音  阅读(458)  评论(0编辑  收藏  举报