实现 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() 定义相符。
? https://leetcode-cn.com/classic/problems/implement-strstr/description/
class Solution {
public:
int strStr(string haystack, string needle) {
if (needle == "") return 0;
int ne[100100];
char a[100100],b[100100];
int len_hay = haystack.size(), len_need = needle.size();
for (int i = 1; i <= len_hay ; ++i) a[i] = haystack[i-1]; // 背的模板从下标1开始写的,所以。。。。
for (int i = 1; i <= len_need ; ++i) b[i] = needle[i-1];
for (int i = 2, j = 0 ; i <= len_need ; ++i){ // i从2开始是因为最长前缀和后缀的必需在长度至少为2的字符串中才能有
while(j && b[i] != b[j+1]) j = ne[j];
if (b[i] == b[j+1]) ++j;
ne[i] = j;
}
for (int i = 1, j = 0; i <= len_hay; ++i){
while(j && a[i] != b[j+1]) j = ne[j];
if (a[i] == b[j+1]) ++j;
if (j == len_need) return i - len_need;
}
return -1;
}
};