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

20140723 字符串包含程序

时间:2014-07-23 16:55:11      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   2014   re   

1、字符串包含程序
#include<stdio.h>
#include<string.h>
int Strstr(char *String, char *Substring)
{
    if(String==NULL||Substring==NULL||strlen(String)<strlen(Substring))
        return -1;

    char *pString=String;
    char *pSubstring=Substring;
    int count=0;
    while(*pString!=\0)
    {
        pSubstring=Substring;
        while(*pSubstring==*pString)
        {
            pString++;
            pSubstring++;
            if(*pSubstring==\0)
                return count;
        }
        pString++;
        count++;
    }
}

void main()
{
    char Str[]="ABCD";
    char Substr[]="ABCDEEE";
    int index=Strstr(Str,Substr);
    printf("%d",index);
}

20140723 字符串包含程序,布布扣,bubuko.com

20140723 字符串包含程序

标签:style   blog   color   io   2014   re   

原文地址:http://www.cnblogs.com/yexuannan/p/3863350.html

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