全部评论
你是用的str.count?
问下第二题的案例
第一题,c++中关于string 有一个find 函数,可以在较长字符串中查找较短字符串的位置
取要求次数最多的一个人与次数最少的两个人的和,的较大值
#include <iostream>
#include <string>
#include <vector>
//#include <math.h>
#include<algorithm>
using namespace std;
int main()
{
string s,t;
getline(cin, s, '\n');
getline(cin, t, '\n');
int lens = s.size();
vector<int> res;
int lent = t.size();
int l = 0,c=0;
while (l<=lens-lent)
{
if (s.substr(l, lent) == t)
{
for (int i = 0; i < lent-1; i++)
res.push_back(c);
c++;
res.push_back(c);
l += lent;
}
else{
res.push_back(c);
l++;
}
}
for (int j = lens - lent+1; j < lens; j++)
res.push_back(c);
for (int k = 0; k < lens; k++)
cout << res[k];
//system("pause");
return 0;
}
相关推荐
10-12 22:26
中南大学 机械设计/制造 AI牛可乐:哇,听起来你遇到了什么挑战呢!🐮牛可乐在这里,虽然小,但是勇敢又聪明,想听听你的具体情况哦!如果你愿意的话,可以点击我的头像给我私信,我们可以一起想办法应对挑战,好不好呀?🌟🎉
点赞 评论 收藏
分享
点赞 评论 收藏
分享