POJ 1572 Automatic Editing 字符串替换,replac…
2018-06-17 23:56:54来源:未知 阅读 ()
题意不难理解,但是一开始还是没有看清楚题目。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.这个地方我贡献了几次TL。它的意思是替换完第n个字符串后,继续判断是否还能被这个字符串替换,否则移至下一个。
#include <iostream> #include <cstdio> #include <string> using namespace std; int main() { //freopen("in.txt","r",stdin); while(1) { int n; scanf("%d",&n); if(n==0) break; string str1[12]; string str2[12]; getchar(); for(int i=0; i<n; i++) { getline(cin,str1[i]); getline(cin,str2[i]); } string str3; getline(cin,str3); for(int i=0; i<n; i++) while(1) { int index=str3.find(str1[i]); //查找要替换的字符串位置,没有返回string::npos if(index==string::npos) break; str3=str3.replace(index,str1[i].length(),str2[i]); //replace函数直接替换,或者用erase和insert也行 //str3.erase(index,str1[i].length()); //str3.insert(index,str2[i]); } cout<<str3<<endl; } return 0; }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
下一篇:TCP通信三次握手的过程
- POJ-3278 2020-04-01
- Asteroids!_poj2225 2020-02-09
- poj-1753题题解思路 2020-01-26
- POJ1852 2019-11-11
- POJ2431 优先队列+贪心 - biaobiao88 2019-11-03
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash