28. Implement strStr()

2017-09-23  本文已影响0人  namelessEcho

因为是easy所以不要求实现KMP,暴力搜索就好了。

class Solution {
    public int strStr(String haystack, String needle) {
        if(needle.length()==0)
        {
            return 0;
        }
        for(int i = 0 ;i<=haystack.length()-needle.length();i++)
        {
             int j = 0;
              while(j<needle.length()&&haystack.charAt(i+j)==needle.charAt(j))
                  j++;
               if(j==needle.length())
                   return i;
            
        }
        return -1;
    }
}
上一篇 下一篇

猜你喜欢

热点阅读