统计一个字符串在另一字符串中出现的次数

合集下载
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
if(count==len2) {flag++;i=i+j;}
else i++;
count=0;
}
return flag;
}
void main()
{
char s1[1024];
char s2[256];
cout<<"please input a string: "<<endl;
cin.getline(s1,1024);
cout<<"please input other string: "<<endl;
cin.getline(s2,256);
cout<<"the frequeห้องสมุดไป่ตู้cy is:"<<fun(s1,s2);
cout<<endl;
}
len2=strlen(s2);
if(len1==0||len2==0)
return 0;//防止出现空串
for(i=0;i+j<=len1;){
if(s1[i]==s2[0]){
for(j=0;j<len2;j++){
if(s1[i+j]!=s2[j]) break;
else count++;
}
}
//统计字符串s2在s1中出现的次数
#include <iostream>
#include <cstring>
using namespace std;
int fun(char* s1,char* s2)
{
int i,j,count,flag,len1,len2;
count=0;
flag=0;
len1=strlen(s1);
相关文档
最新文档