C++实现统计子字符串的方法

C++实现统计子字符串的方法

题目描述:输入两个字符串,统计一个字符串在另一个字符串中出现的次数
如:输入:woshibushixiannv
shi
输出:2

#include 
#include 
using namespace std;

int findStr2fromStr1(char *str1, char *str2)
{
   
    int  n;
    char  *p, *r

你可能感兴趣的:(c++,算法,字符串,leetcode,代码规范)