美文网首页
28. 实现 strStr()

28. 实现 strStr()

作者: 一直流浪 | 来源:发表于2022-10-18 09:30 被阅读0次

    28. 实现 strStr()

    题目链接:https://leetcode-cn.com/problems/implement-strstr/

    难度:简单

    实现 strStr() 函数。

    给定一个 haystack 字符串和一个 needle 字符串,在 haystack 字符串中找出 needle 字符串出现的第一个位置 (从0开始)。如果不存在,则返回 -1

    示例 1:

    输入: haystack = "hello", needle = "ll"
    输出: 2
    

    示例 2:

    输入: haystack = "aaaaa", needle = "bba"
    输出: -1
    

    说明:

    needle 是空字符串时,我们应当返回什么值呢?这是一个在面试中很好的问题。

    对于本题而言,当 needle 是空字符串时我们应当返回 0 。这与C语言的 strstr() 以及 Java的 indexOf() 定义相符。

    解法一:暴力法

    利用双重循环,外层循环遍历haystack 字符串,如果找到与needle [0]相同的字符,然后进行内层循环,依次比对,若有不相同的元素,直接退出内循环,若最后内层循环完整遍历完成,则说明找到了第一个needle出现的位置。

    代码:

    class Solution {
        public int strStr(String haystack, String needle) {
            int j = 0;
            if(needle.length()==0) {
                return  0;
            }
            for(int i = 0;i<haystack.length()-needle.length()+1;i++) {
                if(haystack.charAt(i) == needle.charAt(0)) {
                    for(j = 0;j<needle.length();j++) {
                        if(haystack.charAt(i) != needle.charAt(j)) {
                            break;
                        }
                        i++;
                    }
    
                    if(j == needle.length()) {
                        return i-j;
                    }else {
                        i = i-j;
                        j = 0;
                    }
                }
            }
            return -1;
        }
    }
    

    相关文章

      网友评论

          本文标题:28. 实现 strStr()

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