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

LeetCode -- 28. Implement strStr()

时间:2019-05-24 10:35:26      阅读:78      评论:0      收藏:0      [点我收藏+]

标签:highlight   stack   amp   int   pre   turn   ||   code   tco   

My solution:

class Solution {
public:
    int strStr(string haystack, string needle) {
        int hsize = haystack.size();
        int nsize = needle.size();
        if(hsize<nsize) return -1;
        if(needle == "" ||haystack == "") return 0;
        
        for(int i=0; i<hsize; i++){
            if(haystack[i] == needle[0]){
                for(int j=1; j<nsize; j++){
                    if(haystack[i+j] != needle[j])
                        break;
         
                    if(j == nsize-1) return i;
                }
                if(nsize == 1) return i;
            }
        }
        return -1;
    }
};

 

Other guy‘s solution

    int strStr(string haystack, string needle) {

        if(haystack.size() < needle.size())
            return -1;
        
        int index = 0;
        int i,j;
        for(i = 0, j = 0;i < haystack.size() && j < needle.size();){
            if(haystack[i] == needle[j]){
                i++; j++;
            }else{
               index++;
               i = index;
               j = 0;
            }
        }
    
        if(j == needle.size())
            return index;
        return -1;
   }

  

LeetCode -- 28. Implement strStr()

标签:highlight   stack   amp   int   pre   turn   ||   code   tco   

原文地址:https://www.cnblogs.com/feliz/p/10916521.html

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