1177.查找
- 题目描述:
-
读入一组字符串(待操作的),再读入一个int n记录记下来有几条命令,总共有2中命令:1、翻转 从下标为i的字符开始到i+len-1之间的字符串倒序;2、替换 命中如果第一位为1,用命令的第四位开始到最后的字符串替换原读入的字符串下标 i 到 i+len-1的字符串。每次执行一条命令后新的字符串代替旧的字符串(即下一条命令在作用在得到的新字符串上)。
命令格式:第一位0代表翻转,1代表替换;第二位代表待操作的字符串的起始下标int i;第三位表示需要操作的字符串长度int len。
- 输入:
-
输入有多组数据。
每组输入一个字符串(不大于100)然后输入n,再输入n条指令(指令一定有效)。
- 输出:
-
根据指令对字符串操作后输出结果。
- 样例输入:
-
bac 2 003 112as
- 样例输出:
-
cab cas
#include<iostream> #include<cstring> using namespace std; int main(){ char a[100],b[10]; int n,i; char temp; while(gets(a)){ cin>>n; int nu=strlen(a); for(i=0;i<n;i++){ gets(b); if(b[0]=='0'){ int q=b[1]-'0',len=b[2]-'0'; for(int j=0;j<len/2;j++) { temp=a[j+q]; a[j+q]=a[q-j+len-1]; a[q-j+len-1]=temp; } for(int j=0;j<nu;j++) { cout<<a[j]; } cout<<endl; } else if(b[0]=='1'){ int q=b[1]-'0',len=b[2]-'0'; for(int j=0;j<len;j++) { a[j+q]=b[3+j]; } for(int j=0;j<nu;j++) { cout<<a[j]; } cout<<endl; } } } return 0; }