28. Implement strStr()

2016-12-12  本文已影响0人  夜皇雪
public 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++){
            if(haystack.substring(i,i+needle.length()).equals(needle)) return i;
        }
        return -1;
    }
}
上一篇 下一篇

猜你喜欢

热点阅读