28.implement-str-str 实现strStr()

2022/8/15 23:27:18

本文主要是介绍28.implement-str-str 实现strStr(),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

KMP算法

关键在于如何求next数组

void getNext(int *next, const string &s) {
    int j = -1;
    next[0] = j;
    for (int i = 1; i < s.size(); i++) {
        // next[j + 1]指向匹配好的前缀的下一个字符
        // i指向后缀末尾位置
        while (j >= 0 && s[i] != s[j + 1]) {
            j = next[j];
        }
        if (s[i] == s[j + 1]) {
            j++;//j+1表示最长相等子串的长度,所以字符相等时,长度递增
        }
        next[i] = j;
    }
}

完整代码

#include <string>
using std::string;
class Solution {
  public:
    void getNext(int *next, const string &s) {
        int j = -1;
        next[0] = j;
        for (int i = 1; i < s.size(); i++) {
            // next[j + 1]指向匹配好的前缀的下一个字符
            // 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;
    }
};


这篇关于28.implement-str-str 实现strStr()的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程