问题描述
- 计算字符串中子串出现的次数。
-
要求:用一个子函数substring()实现,参数为指向字符串和要查找的子串的指针,返回次数
解决方案
#include
using namespace std;
int subString(char *s,char *t)
{
int count = 0;
bool flag = false;
char *temp = NULL;
while(*s != '')
{
temp=t;
while(*temp !=......<br/><strong>答案就在这里:</strong><a target='_blank' rel='nofollow' href='http://blog.csdn.net/abc1988x/article/details/30242017'>计算字符串中子串出现的次数</a><br/>
时间: 2024-11-05 17:29:44