文章

72

粉丝

142

获赞

5

访问

57.7k

头像
字符串删除 题解:
P1856 兰州大学2017年机试
发布于2024年3月21日 17:14
阅读数 439

#include<iostream>
#include<cstring>
#include<string>
#include<algorithm>
#include<vector>
using namespace std;


int main() {
    string str1, str2;
    while (cin >> str1 >> str2) {
        int num = 0;
        int length = str2.size();
        while (str1.find(str2) != string::npos) {
            num++;
            int n = str1.find(str2);
            str1.erase(n,length);

        }
        cout << "num=" << num << ";S3=" << str1 << endl;
    }

}

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发