-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathZ-Algorithm.cpp
More file actions
44 lines (39 loc) · 877 Bytes
/
Z-Algorithm.cpp
File metadata and controls
44 lines (39 loc) · 877 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
int Z[100002];
void getZarr(st str)
{
int n = str.length();
int L, R, k;
L = R = 0;
f(i,1,n)
{
if (i > R){
L = R = i;
while (R<n && str[R-L] == str[R])R++;
Z[i] = R-L;
R--;
}
else{
k = i-L;
if (Z[k] < R-i+1) Z[i] = Z[k];
else{
L = i;
while (R<n && str[R-L] == str[R])R++;
Z[i] = R-L;
R--;
}
}
}
}
void search(st text, st pattern)
{
st concat = pattern + "$" + text;
int l = concat.length();
getZarr(concat);
f(i,0,l) if (Z[i] == pattern.length())cout << "Pattern found at index "<< i - pattern.length() -1 << endl;
}
int main(){
//fin(prob);
//fout(prob);
c(st, text);c(st, pattern);
search(text, pattern);
return 0;}