码迷,mamicode.com
首页 > 其他好文 > 详细

字符串相关操作

时间:2014-09-10 21:02:01      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:io   ar   sp   代码   c   amp   r   bs   har   

写出在母串中查找子串出现次数的代码

#include<stdio.h>

int count1(char* s1,  char* s2)

{

    int count = 0;

    while(*s1!=‘\0‘)

    {

        while(*s2 == *s1&&(*s2!=‘\0‘)&&(*s1!=‘\0‘))

        {

            s2++;

            s1++;

        }

        if(*s2 == ‘\0‘)

            count++;

        s1++;

    }

    return count;

}

main()

{

         char* s1="zhousenshan";

           char* s2="o";

printf("%d",count1(s1, s2));

 

}

字符串相关操作

标签:io   ar   sp   代码   c   amp   r   bs   har   

原文地址:http://www.cnblogs.com/zhouxiansheng/p/3965110.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!