美文网首页
Leetcode 28. Implement strStr()

Leetcode 28. Implement strStr()

作者: persistent100 | 来源:发表于2017-04-09 12:47 被阅读0次

题目

Implement strStr().
Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.

分析

判断一个字符串是不是另一个字符串的子串。只需从前向后挨个判断是否匹配即可。而且要注意两个字符串分别为空的情况

int strStr(char* haystack, char* needle) {
    int p1=0,p2=0,p3=0;
    while(haystack[p1]!='\0')
    {
        p3=p1;
        while(haystack[p3]!='\0'&&haystack[p3]==needle[p2])
        {
            p3++;
            p2++;
        }
        if(needle[p2]=='\0')
            return p1;
        else
        {
            p1++;
            p2=0;
        }
    }
    if(needle[0]=='\0')
        return 0;
    else
        return -1;
}

相关文章

网友评论

      本文标题:Leetcode 28. Implement strStr()

      本文链接:https://www.haomeiwen.com/subject/yxjdattx.html