-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathKMP_Algorithm.cpp
More file actions
64 lines (60 loc) · 997 Bytes
/
Copy pathKMP_Algorithm.cpp
File metadata and controls
64 lines (60 loc) · 997 Bytes
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
#include <iostream>
#include <cmath>
#include <cstring>
#include <cstdio>
#include <iomanip>
#include <algorithm>
#include <stack>
#include <vector>
#include <fstream>
#include <map>
#include <bitset>
#include <cstring>
using namespace std;
#define ll long long int
#define inf 2147483647
#define pi acos(-1)
typedef vector<int> vi;
typedef pair<int, int> ii;
typedef pair<ll, ll> llp;
#define Max_N 1001000
char T[Max_N], P[Max_N];
int n, m;
int b[Max_N];
void kmpPreProcess()
{
int i=0, j=-1;
b[0]=-1;
while(i<m)
{
while(j>=0 && P[i]!=P[j])j=b[j];
++i;
++j;
b[i]=j;
}
}
void kmpSearch()
{
kmpPreProcess();
int i=0, j=0;
while(i<n)
{
while(j>=0 && T[i]!=P[j])j=b[j];
++i;
++j;
if(j==m)
{
printf("P is found at %d in T\n", i-j);
j=b[j];
}
}
}
int main()
{
gets(T);
gets(P);
n=strlen(T);
m=strlen(P);
kmpSearch();
return 0;
}