-
Notifications
You must be signed in to change notification settings - Fork 0
/
string_matching.cpp
189 lines (177 loc) · 4.66 KB
/
string_matching.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
// #include <bits/stdc++.h>
// #include <ctime>
// #include <stdio.h>
// #include <iostream>
// using namespace std;
// bool isValidShift(string T, string P, int s)
// {
// int m = P.length();
// for (int i = 0; i < m; i++)
// {
// if (P[i] != T[s + i])
// return false;
// }
// return true;
// }
// vector<int> naiveStringMatcher(string T, string P)
// {
// int n = T.length();
// int m = P.length();
// vector<int> R;
// for (int s = 0; s <= n - m; s++)
// {
// if (isValidShift(T, P, s))
// R.push_back(s);
// }
// return R;
// }
// int main()
// {
// string T, P;
// cin >> T >> P;
// clock_t tStart = clock();
// auto A = naiveStringMatcher(T, P);
// double t = (double)(clock() - tStart) / CLOCKS_PER_SEC;
// cout << endl
// << "Time taken (in seconds) : " << t << endl;
// if (A.size() == 0)
// {
// cout << "No match" << endl;
// return 0;
// }
// // cout << "Valid Shifts: ";
// // for ( int i = 0; i < A.size(); i++ ) {
// // cout << A[i] << ", ";
// // }
// cout << endl;
// return 0;
// }
#include <bits/stdc++.h>
#include <ctime>
using namespace std;
const int d = 256; // size of the character set
const int q = 101; // prime number used for hashing
void rabinKarp(string pattern, string text)
{
int m = pattern.length();
int n = text.length();
int p = 0; // hash value for pattern
int t = 0; // hash value for text
int h = 1;
// calculate h as d^(m-1) modulo q
for (int i = 0; i < m - 1; i++)
{
h = (h * d) % q;
}
// calculate initial hash values for pattern and text
for (int i = 0; i < m; i++)
{
p = (d * p + pattern[i]) % q;
t = (d * t + text[i]) % q;
}
// slide the pattern over the text one by one
for (int i = 0; i <= n - m; i++)
{
// check if the hash values for current window match
if (p == t)
{
bool match = true;
// compare characters one by one
for (int j = 0; j < m; j++)
{
if (pattern[j] != text[i + j])
{
match = false;
break;
}
}
if (match)
{
cout << "Pattern found at index " << i << endl;
}
}
// calculate hash value for next window
if (i < n - m)
{
t = (d * (t - text[i] * h) + text[i + m]) % q;
if (t < 0)
{
t += q;
}
}
}
}
int main()
{
string pattern, text;
cin >> text >> pattern;
clock_t tstart = clock();
rabinKarp(pattern, text);
double time1 = (double)(clock() - tstart) / CLOCKS_PER_SEC;
cout << "Time taken by Rabin Karp Algorithm is: " << time1;
return 0;
}
// #include <iostream>
// #include <string>
// #include <vector>
// #include <ctime>
// using namespace std;
// vector<int> computePrefix(string pattern)
// {
// int n = pattern.size();
// vector<int> prefix(n);
// prefix[0] = 0;
// int j = 0;
// for (int i = 1; i < n; i++)
// {
// while (j > 0 && pattern[i] != pattern[j])
// {
// j = prefix[j - 1];
// }
// if (pattern[i] == pattern[j])
// {
// j++;
// }
// prefix[i] = j;
// }
// return prefix;
// }
// vector<int> kmpSearch(string text, string pattern)
// {
// vector<int> matches;
// int n = text.size();
// int m = pattern.size();
// vector<int> prefix = computePrefix(pattern);
// int j = 0;
// for (int i = 0; i < n; i++)
// {
// while (j > 0 && text[i] != pattern[j])
// {
// j = prefix[j - 1];
// }
// if (text[i] == pattern[j])
// {
// j++;
// }
// if (j == m)
// {
// matches.push_back(i - m + 1);
// j = prefix[j - 1];
// }
// }
// return matches;
// }
// int main()
// {
// string text, pattern;
// cin >> text >> pattern;
// clock_t tstart = clock();
// vector<int> matches = kmpSearch(text, pattern);
// for (int i = 0; i < matches.size(); i++)
// {
// cout << "Match found at index " << matches[i] << endl;
// }
// double time1 = (double)(clock() - tstart) / CLOCKS_PER_SEC;
// cout << "Time taken by the KMP algorithm is: " << time1 << endl;
// return 0;
// }