首页 > 其他分享 >leetcode 28. 实现strStr()

leetcode 28. 实现strStr()

时间:2023-02-21 17:34:51浏览次数:37  
标签:strStr string int needle 28 fail haystack leetcode size

库函数

#include <iostream>
#include <string>
using namespace std;
#define debug(x) cout<<#x<<": "<<x<<endl;

class Solution {
public:
    int strStr(string haystack, string needle) {
        return haystack.find(needle);
    }
};

int main()
{
    Solution Solution1;
    cout<<Solution1.strStr("ginsgg","gg")<<endl;
    return 0;
}

leetcode 28. 实现strStr()_朴素匹配
KMP

class Solution {
public:
    int strStr(string haystack, string needle) {
        vector<int> fail(haystack.size()+1,-1);
        if(haystack.size()<needle.size()){
            return -1;
        }
        int i=0,j =0;
        for(j =1;j<needle.size();j++){
            for(i = fail[j-1];i>=0 && needle[i+1]!=needle[j];i = fail[i]);
            fail[j] = (needle[i+1]==needle[j]?i+1:-1);
        }

        for(i=j=0;i<haystack.size() && j<needle.size();i++){
            //debug(1);
            if(haystack[i]==needle[j])j++;
            else if(j)j = fail[j-1]+1,i--;
        }
        return j==needle.size()?i - needle.size():-1;
    }
};

leetcode 28. 实现strStr()_#include_02

标签:strStr,string,int,needle,28,fail,haystack,leetcode,size
From: https://blog.51cto.com/liyunhao/6076884

相关文章