首页 > 其他 > 详细

Implement strStr()

时间:2015-02-08 23:01:53      阅读:347      评论:0      收藏:0      [点我收藏+]

https://oj.leetcode.com/problems/implement-strstr/

Implement strStr().

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

解题思路:

很简单,因为诸如KMP之类的算法已经完全想不起是如何解的了,暴力解法。

这里需要注意循环到haystack.length() - needle.length()就可以了,因为剩下的长度已经比子字符串要小。

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() + 1; i++){
            if(haystack.charAt(i) == needle.charAt(0)){
                boolean flag = true;
                for(int j = 0; j < needle.length(); j++){
                    // if(i + j > haystack.length() - 1){
                    //     flag = false;
                    //     break;
                    // }
                    if(needle.charAt(j) != haystack.charAt(i + j)){
                        flag = false;
                        break;
                    }
                }
                if(flag){
                    return i;
                }
            }else{
                continue;
            }
        }
        return -1;
    }
}

 

Implement strStr()

原文:http://www.cnblogs.com/NickyYe/p/4280573.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!