-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHoorspool_Pattern_Search_Algorithm.cpp
More file actions
118 lines (72 loc) · 1.97 KB
/
Hoorspool_Pattern_Search_Algorithm.cpp
File metadata and controls
118 lines (72 loc) · 1.97 KB
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
#include <iostream>
#include <string>
#include <cstring>
#include <vector>
#include <time.h>
#include <set>
#include <map>
using namespace std;
map<char,int> Shift_Table(set<char> sigma,string pattern){
map<char,int> shifts;
int m = pattern.length();
for(auto &c: sigma){
shifts[c] = m;
}
for(int i = 0; i < m-1;i++){
shifts[pattern.at(i)] = m - i - 1;
}
return shifts;
}
void HoorspoolPatternSearchAlgorithm(set<char> sigma,string text,string pattern){
vector<int> match_pos;
int i = pattern.length() - 1;
clock_t start = clock();
map<char,int> shifts = Shift_Table(sigma,pattern);
while (i < text.length()){
int j = i - pattern.length() + 1;
string window = text.substr(j,pattern.length());
if(window == pattern){
match_pos.push_back(j);
}
i += shifts[text[i]];
}
clock_t end = clock();
double elapsed = double(end - start) / CLOCKS_PER_SEC;
cout << "Elapsed time: " << elapsed << " seconds." << std::endl;
if(match_pos.size() > 0){
cout << "Matches found at Positions: ";
for(int &i: match_pos){
cout << i+1 << " ";
}
cout << endl;
}
else{
cout << "No match found." << endl;
}
}
int main(){
set<char> sigma;
string text;
string pattern;
cout << "Enter Your Alphabets (Space Seprated): ";
string sigma_Alphabets;
getline(cin,sigma_Alphabets);
for(auto &c: sigma_Alphabets){
if(c != ' '){
sigma.insert(c);
}
}
cout << "Enter Your Text: ";
getline(cin,text);
cout << "Enter Your Pattern: ";
getline(cin,pattern);
if(text.length() < pattern.length()){
cerr << "Error: Length of text should be greater than pattern." << endl;
}
else{
cout << endl;
HoorspoolPatternSearchAlgorithm(sigma,text,pattern);
cout << endl;
}
return 0;
}