码迷,mamicode.com
首页 > 编程语言 > 详细

【C语言】【面试题】【笔试题】模拟实现strstr函数

时间:2015-11-20 00:20:26      阅读:273      评论:0      收藏:0      [点我收藏+]

标签:c语言   模拟实现strstr函数   

#define _CRT_SECURE_NO_WARNINGS 1
#include<stdio.h>
#include<assert.h>
#include<stdlib.h>

char *my_strstr(const char *dst,const  char *src)
{
    assert(dst);
    assert(src);
    char *p = dst;
    char *s1 = p;
    char *s2 = src;
    while (*s1)
    {
        s1 = p;
        s2 = src;
        while ((*s1!=‘\0‘)&&(*s2 != ‘\0‘))
        {
            if (*s1++ == *s2++)
            {
                ;
            }
            else
            {    
                p++;
                break;
            }
        }
        if (*s2 == ‘\0‘)
        {
            return p;
        }
    
    }
}

int main()
{
    char *str1 = "abbbcdef";
    char *str2 = "bbcd";
    char *ret = my_strstr(str1, str2);
    printf("%s\n", ret);
    system("pause");
    return 0;
}


【C语言】【面试题】【笔试题】模拟实现strstr函数

标签:c语言   模拟实现strstr函数   

原文地址:http://10740329.blog.51cto.com/10730329/1714865

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