Implement strStr()

来源:互联网 发布:ubuntu下gcc编译器 编辑:程序博客网 时间:2024/06/06 02:00
public class Solution {    public int strStr(String haystack, String needle) {        if (haystack == null || needle == null) {            return -1;        }        //for (int i = 0; i < haystack.length() - needle.length(); i++) {        for (int i = 0; i <= haystack.length() - needle.length(); i++) {            int j = 0;            for (; j < needle.length(); j++) {                if (haystack.charAt(i + j) != needle.charAt(j)) {                    break;                }            }            if (j == needle.length()) {                return i;            }        }        return -1;    }}

0 0
原创粉丝点击