-
Notifications
You must be signed in to change notification settings - Fork 0
/
Z-Algorithm.cpp
68 lines (60 loc) · 1.31 KB
/
Z-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
// Created by Anushk Gautam
/*
GitHub Repo : https://github.com/Anushk2001/Optimisation-of-Pattern-Matching
Optimisation of Pattern Matching
*/
#include <bits/stdc++.h>
using namespace std;
void compute_Z_Array(string str, int Z[])
{
int n = str.length();
int L, R, k;
L = R = 0;
for (int i = 1; i < n; ++i)
{
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 Z_Algorithm(string &Text, string &Pattern)
{
string concat = Pattern + "$" + Text;
int l = concat.length();
// Constructing Z array
int Z[l];
compute_Z_Array(concat, Z);
for (int i = 0; i < l; ++i)
{
if (Z[i] == Pattern.length())
cout << "Pattern found at index : " << i - Pattern.length() - 1 << endl;
}
}
int main()
{
string Text;
string Pattern;
cin >> Text;
cin >> Pattern;
Z_Algorithm(Text, Pattern);
return 0;
}