美文网首页
28. Implement strStr()

28. Implement strStr()

作者: 夜皇雪 | 来源:发表于2016-12-12 12:23 被阅读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;
    }
}

相关文章

网友评论

      本文标题:28. Implement strStr()

      本文链接:https://www.haomeiwen.com/subject/fsemmttx.html