-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathkmp.cpp
79 lines (67 loc) · 1007 Bytes
/
kmp.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
70
71
72
73
74
75
76
77
78
79
//Program to implement Knuth Morris Pratt algorthm for pattern matching
#include <iostream>
#include <string>
using namespace std;
//function to find index at which pattern is found
void KMP(string str, string pat, int *pre, int m, int n)
{
int i=0,j=0;
while(i<n)
{
if(pat[j]==str[i])
{
j++;
i++;
}
if(j==m)
{
cout<<"Pattern found at index "<<i-j<<endl;
j=pre[j-1];
}
else if(i<n && pat[j]!=str[i])
{
if(j!=0)
j=pre[j-1];
else
i=i+1;
}
}
}
//function to construct prefix array
int* ConstructPrefix(string pat, int *pre, int m)
{
int i=1;
int len=0;
while(i<m)
{
if(pat[i]==pat[len])
{
len++;
pre[i]=len;
i++;
}
else
{
if(len!=0)
len=pre[len-1];
else
{
pre[i]=0;
i++;
}
}
}
return pre;
}
//driver function
int main()
{
string str="abacdbabaa";
string pat="aba";
int m=pat.length();
int n=str.length();
int prefix[m]={0};
ConstructPrefix(pat,prefix,m);
KMP(str,pat,prefix,m,n);
return 0;
}