Advertisement
Araf_12

KMP_algorithm

Dec 13th, 2024
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.24 KB | Source Code | 0 0
  1. #include <bits/stdc++.h>
  2. #include <stdio.h>
  3. #define fin freopen("input", "r", stdin)
  4.  
  5. using namespace std;
  6.  
  7. vector<int> constructTempArray(string pattern) {
  8.     vector<int> lps(pattern.length());
  9.     int index = 0;
  10.     for (int i = 1; i < (int) pattern.length(); ) {
  11.         if (pattern[i] == pattern[index]) lps[i] = index + 1, ++index, ++i;
  12.         else {
  13.             if (index != 0) index = lps[index - 1];
  14.             else lps[i] = index, ++i;
  15.         }
  16.     }
  17.     return lps;
  18. }
  19.  
  20. void KMPMultipleTimes (string text, string pattern) {
  21.     bool found = false;
  22.     vector<int> lps = constructTempArray(pattern);
  23.     int j = 0, i = 0;
  24.  
  25.     // i --> text, j --> pattern
  26.     while (i < (int) text.length()) {
  27.         if (text[i] == pattern[j]) ++i, ++j;
  28.         else {
  29.             if (j != 0) j = lps[j - 1];
  30.             else ++i;
  31.         }
  32.  
  33.         if (j == (int) pattern.length()) {
  34.             cout << "found match at : " << (i - pattern.length()) << endl;
  35.             j = lps[j-1];
  36.             found = true;
  37.         }
  38.     }
  39.  
  40.     if (!found) cout << "not found" << endl;
  41. }
  42.  
  43. int main() {
  44.     string text, pattern;
  45.     getline(cin, text);
  46.     getline(cin, pattern);
  47.     KMPMultipleTimes(text, pattern);
  48.  
  49.     return 0;
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement