题目描述:
实现 strStr() 函数。
给你两个字符串 haystack 和 needle ,请你在 haystack 字符串中找出 needle 字符串出现的第一个位置(下标从 0 开始)。如果不存在,则返回 -1 。
说明:
当 needle 是空字符串时,我们应当返回什么值呢?这是一个在面试中很好的问题。
对于本题而言,当 needle 是空字符串时我们应当返回 0 。这与 C 语言的 strstr() 以及 Java 的 indexOf() 定义相符。
示例 1:
输入:haystack = "hello", needle = "ll"
输出:2
示例 2:
输入:haystack = "aaaaa", needle = "bba"
输出:-1
示例 3:
输入:haystack = "", needle = ""
输出:0
//KMP算法
class Solution {
public int strStr(String haystack, String needle) {
//获取haystack和needle字符串的长度
int m = haystack.length();
int n= needle.length();
//如果needle是空字符串,则返回0
if(n == 0) return 0;
//获取到一个字符串的部分匹配值表
//创建一个next数组,储存“部分匹配值”
int[] next = new int[n];
for(int i = 1,j = 0;i < n;i++){
//当needle.charAt(i) != needle.charAt(j)时,我们需要从next[j-1]获取新的 j
//直到我们发现有 needle.charAt(i) == needle.charAt(j)成立才退出
//这是kmp算法的核心
while(j > 0 && needle.charAt(i) != needle.charAt(j)){//String.charAt()方法返回指定索引处的char值
j = next[j - 1];
}
//当needle.charAt(i) == needle.charAt(j)时,部分匹配值+1
if(needle.charAt(i) == needle.charAt(j)) j++;
next[i] = j;
}
//遍历
for(int i = 0, j = 0; i < m; i++){
//需要处理 haystack.charAt(i) != needle.charAt(j)的情况,去调整j的大小
//kmp算法核心点
while (j > 0 && haystack.charAt(i) != needle.charAt(j)) j = next[j-1];
if(haystack.charAt(i) == needle.charAt(j)) j++;
if(j == n) return i - j + 1;//说明找到了
}
return -1;//如果没找到则返回-1
}
}