1 传入两个字符串作为参数。
2 对源字符串进行遍历。
3 逐个判断字符串是否为字串,如是,则累加。
4 返回结果。
代码:
int calc_sub(char *s, char *p)
{
int r = 0;
while(*s)
{
if(p[0] == s[0] && p[1] == s[1]) r++;//由于限定p只有2个字符,所以直接比较即可。
s++;
}
return r;
}
用标准库函数实现:
//输入一个字符串(保存在数组b中),查找字符串a(*a="ab")出现的次数,将出现次数保存到c中
//---------------------------------------------------------------------------
#include
#include
int main(int argc, char* argv[])
{
char b[80];
char *p=b,*a="ab",*s;
int c=0;
gets(b);
do{
if ((s=strstr(p,a)))
c++;
p=(s+2);
}while (s) ;
printf("%d",c);
return 0;
}
//---------------------------------------------------------------------------
不用库函数
#include
int strc(const char *a,const char *b)//统计在a中b出现的次数
{
int c=0;
const char *s,*p,*ts;
p=a,ts=b;
do
{
//if (*p*(*(p+1))==0) break;
if (*p==*ts&&*(p+1)==*(ts+1)) c++;
p+=2; //b的长度为2
}
while (*p&&*(p+1));
return c;
}
int main(void)
{
char *b="ab";
char a[80];
scanf("%s",a);
puts(a);
printf("%d",strc(a,b));
return 0;
}
# include
# include
void main ()
{
char *a="ab",b[20],*p=a,*q=b,*r;
int n=0;
gets (b);
while (*q)
{
r=q;
p=a;
while (*p)
{
if (*p==*r)
{
p++;r++;
}
else
break;
}
if (*p=='\0')
n++;
q++;
}
printf ("出现的次数为%d\n",n);
}