文章

2

粉丝

60

获赞

22

访问

2.2k

头像
查找 - 北邮 题解:过了,替换长度可能不一样,用到了string的erase函数和insert函数
P1387 北京邮电大学
发布于2024年3月15日 11:14
阅读数 1.2k

 

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. void reverse(string &s, int begin, int end) {
  4. for (int i = begin, j = end; i < j; i++,j--) {
  5. swap(s[i],s[j]);
  6. }
  7. }
  8. int main() {
  9. string str;
  10. while (cin>>str) {
  11. int n;
  12. cin>>n;
  13. for (int i = 0; i < n; i++) {
  14. string s;
  15. cin>>s;
  16. //反转
  17. if (s[0] == '0') {
  18. int begin = s[1]-'0';
  19. int end = s[2]-'0'+begin-1;
  20. reverse(str, begin, end);
  21. cout<<str<<endl;
  22. }
  23. else if (s[0] == '1') {
  24. int begin = s[1]-'0';
  25. int end = s[2]-'0'+begin-1;
  26. string s1 = s.substr(3, s.size());
  27. str.erase(str.begin()+begin, str.begin()+end+1);
  28. str.insert(begin,s1);
  29. cout<<str<<endl;
  30. }
  31. }
  32. }
  33. return 0;
  34. }

 

登录查看完整内容


登录后发布评论

1 条评论
snake VIP
2024年3月15日 12:08

注意审题,替换操作的题意没理解对

赞(1)