Leetcode_28 实现strStr()

从第一个字符开始遍历,符合则返回位置即可

class Solution {
    public int strStr(String haystack, String needle) {
        if (needle.length() == 0) return 0;
        if (haystack.length() == 0) return -1;
        for (int i=0;i

你可能感兴趣的:(Leetcode_28 实现strStr())