您的位置 首页 JAVA(2017)

LeetCode – 28. Implement strStr()


Implement strStr().

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

估计有不少人和我一样对strStr()不熟悉。。。他也不给个例子。也是醉了

public class Solution {
    public int strStr(String haystack, String needle) {
        int h =0;
        int l = needle.length()-1;
        if(l<0) return 0;
        while(l<haystack.length()){

            if(haystack.charAt(h) == needle.charAt(0) && haystack.charAt(l) == needle.charAt(needle.length()-1)){

                if(checksub(haystack,h,l,needle)){
                    return h;
                }
            }
            h++;
            l++;
        }
        return -1;
    }
    public boolean checksub(String haystack,int start, int end, String needle){
        int h =0;
        int i =start;
        while(i<=end){
            if(haystack.charAt(i) != needle.charAt(h)){
                return false;
            }
            i++;
            h++;
        }
        return true;
    }
}
看完了?留个评分呗?
[0人评了分,平均: 0/5]

本站原创文章皆遵循“署名-非商业性使用-相同方式共享 3.0 (CC BY-NC-SA 3.0)”。转载请保留以下标注:

原文来源:《LeetCode – 28. Implement strStr()》

发表评论

邮箱地址不会被公开。

返回顶部