力扣28. 实现 strStr()
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了力扣28. 实现 strStr()相关的知识,希望对你有一定的参考价值。
class Solution {
public:
int strStr(string haystack, string needle) {
return haystack.find(needle);
}
};
KMP方法:
class Solution {
public:
int strStr(string s, string p) {
if(p.empty()) return 0;
int n=s.size(),m=p.size();
s=' '+s,p=' '+p;
vector<int> next(m+1);
for(int i=2,j=0;i<=m;i++)
{
while(j&&p[i]!=p[j+1]) j=next[j];
if(p[i]==p[j+1]) j++;
next[i]=j;
}
for(int i=1,j=0;i<=n;i++)
{
while(j&&s[i]!=p[j+1]) j=next[j];
if(s[i]==p[j+1]) j++;
if(j==m) return i-m;
}
return -1;
}
};
以上是关于力扣28. 实现 strStr()的主要内容,如果未能解决你的问题,请参考以下文章
leetcode 28. Implement strStr() 实现strStr()