LeetCode-28. 实现 strStr()

LeetCode-28. 实现 strStr()_第1张图片

地址:https://leetcode-cn.com/problems/implement-strstr/

思路:KMP算法

Code:

class Solution {
public:
    void GetNext(string str,int Next[]){
        Next[0]=-1;
        int k=0;
        for(int i=1;i

 

你可能感兴趣的:(LeetCode,KMP)