前言
题目: 28. 找出字符串中第一个匹配项的下标
文档: 代码随想录——实现 strStr()
编程语言: C++
解题状态: 未能写完整
思路
KMP算法最直接的应用。
代码
KMP算法
class Solution {
public:
void getNext(int* next, const string& s) {
int j = -1;
next[0] = j;
for (int i = 1; i < s.size(); i++) {
while (j >=0 && s[i] != s[j + 1]) {
j = next[j];
}
if (s[i] == s[j + 1]) {
j++;
}
next[i] = j;
}
}
int strStr(string haystack, string needle) {
if (needle.size() == 0) {
return 0;
}
int next[needle.size()];
getNext(next, needle);
int j = -1;
for (int i = 0; i < haystack.size(); i++) {
while (j >= 0 && haystack[i] != needle[j + 1]) {
j = next[j];
}
if (haystack[i] == needle[j + 1]) {
j++;
}
if (j == (needle.size() - 1)) {
return (i - needle.size() + 1);
}
}
return -1;
}
};
- 时间复杂度: O ( m + n ) O(m+n) O(m+n)
- 空间复杂度: O ( m ) O(m) O(m)
其中, m m m为模式串长度, n n n为文本串长度。