-
Notifications
You must be signed in to change notification settings - Fork 3
/
Implementation_of_KMP_algorithm.cpp
69 lines (57 loc) · 1.32 KB
/
Implementation_of_KMP_algorithm.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#include <iostream>
using namespace std;
// Function to implement the KMP algorithm
void KMP(string X, string Y)
{
int m = X.length();
int n = Y.length();
// if `Y` is an empty string
if (n == 0)
{
cout << "The pattern occurs with shift 0";
return;
}
// if X's length is less than that of Y's
if (m < n)
{
cout << "Pattern not found";
return;
}
// `next[i]` stores the index of the next best partial match
int next[n + 1];
for (int i = 0; i < n + 1; i++) {
next[i] = 0;
}
for (int i = 1; i < n; i++)
{
int j = next[i + 1];
while (j > 0 && Y[j] != Y[i]) {
j = next[j];
}
if (j > 0 || Y[j] == Y[i]) {
next[i + 1] = j + 1;
}
}
for (int i = 0, j = 0; i < m; i++)
{
if (X[i] == Y[j])
{
if (++j == n) {
cout << "The pattern occurs with shift " << i - j + 1 << endl;
}
}
else if (j > 0)
{
j = next[j];
i--; // since `i` will be incremented in the next iteration
}
}
}
// Program to implement the KMP algorithm in C++
int main()
{
string text = "ABCABAABCABAC";
string pattern = "CAB";
KMP(text, pattern);
return 0;
}