[Algorithms] KMP

KMP is a classic and yet notoriously hard-to-understand algorithm. However, I think the following two links give nice explanations. You may refer to them.

  1. KMP on jBoxer's blog;
  2. KMP on geeksforgeeks, with a well-commented C code.

I am sorry that I am still inable to give a personal explanation of the algorithm. I only read it from the two links above and mimic the code in the second link.

You may use this code to solve the problem Implement strStr() on LeetCode. My accepted 4ms C++ code using KMP is as follows.

 1 class Solution {
 2 public:
 3     int strStr(string haystack, string needle) {
 4         int m = needle.length(), n = haystack.length();
 5         if (!m) return 0;
 6         vector<int> lps = kmpProcess(needle);
 7         for (int i = 0, j = 0; i < n; ) {
 8             if (needle[j] == haystack[i]) {
 9                 i++;
10                 j++;
11             }
12             if (j == m) return i - j;
13             if (i < n && needle[j] != haystack[i]) {
14                 if (j) j = lps[j - 1];
15                 else i++;
16             }
17         }
18         return -1;
19     }
20 private:
21     vector<int> kmpProcess(string needle) {
22         int m = needle.length();
23         vector<int> lps(m, 0);
24         for (int i = 1, len = 0; i < m; ) {
25             if (needle[i] == needle[len])
26                 lps[i++] = ++len;
27             else if (len) len = lps[len - 1];
28             else lps[i++] = 0;
29         }
30         return lps;
31     }
32 };
原文地址:https://www.cnblogs.com/jcliBlogger/p/4588727.html