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

[LeetCode] Implement strStr()

时间:2014-08-25 13:11:34      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   strong   for   ar   art   div   

Implement strStr().

Returns a pointer to the first occurrence of needle in haystack, or null if needle is not part of haystack.

class Solution {
public:
    char *strStr(char *haystack, char *needle) {
        int len1 = strlen(haystack);
        int len2 = strlen(needle);
        if(len1<len2)
            return NULL;
        char *p = haystack;
        for(int i=0;i<=(len1-len2);i++,p++){
            if(strncmp(p,needle,len2)==0)
                return p;
        }
        return NULL;
    }//end func
};

 

[LeetCode] Implement strStr()

标签:style   blog   color   io   strong   for   ar   art   div   

原文地址:http://www.cnblogs.com/Xylophone/p/3934608.html

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