-
Notifications
You must be signed in to change notification settings - Fork 0
/
p4.cpp
232 lines (219 loc) · 6.39 KB
/
p4.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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
#include <iostream>
#include <fstream>
#include <cstring>
#include <list>
#include <vector>
#include <cctype>
using namespace std;
unsigned long djb2(string str) {
const char *ptr = str.c_str();
unsigned long hash = 5381;
int c;
while ((c = *ptr++)) {
hash = ((hash << 5) + hash) + c;
}
return hash;
}
class HashTable{
private:
vector<pair<string, vector<int>>> table;
int collisions;
public:
HashTable();
void resize(int size);
int h1(string key);
void hashInsert(string key, int value, string strat, int hashVal);
void print();
void statPrinter(int totWords);
void querySearch(string key, string searchStrat, int hashVal);
};
HashTable::HashTable(){
collisions = 0;
}
void HashTable::resize(int size){
table.resize(size);
}
int HashTable::h1(string key){
int index = djb2(key) % table.size();
return index;
}
void HashTable::hashInsert(string key, int value, string strat, int hashVal){
int size = table.size(), index = h1(key), j = 0;
if(table[index].first.empty()){
table[index].first = key;
table[index].second.push_back(value);
return;
}
else if (strat == "lp"){
for (j = 0; j < size; j++){
index = (h1(key) + j) % size;
if (table[index].first.empty() || table[index].first == key){
table[index].first = key;
table[index].second.push_back(value);
return;
}
else{
collisions++;
}
}
}
else if (strat == "qp"){
for (j = 0; j < size; j++){
index = (h1(key) + j*j) % size;
if (table[index].first.empty() || table[index].first == key){
table[index].first = key;
table[index].second.push_back(value);
return;
}
else{
collisions++;
}
}
}
else if (strat == "dh"){
for (j = 0; j < size; j++){
index = (h1(key) + j * (hashVal - (djb2(key) % hashVal))) % size;
if (table[index].first.empty() || table[index].first == key){
table[index].first = key;
table[index].second.push_back(value);
return;
}
else{
collisions++;
}
}
}
}
void HashTable::print(){
for(int i = 0; i < table.size(); i++){
cout << i << ": " << table[i].first << endl;
}
}
void HashTable::statPrinter(int totWords){
int uniqueWords = 0;
for (int i = 0; i < table.size(); i++){
if (!table[i].first.empty()){
uniqueWords++;
}
}
cout << "The number of words found in the file was " << totWords << endl;
cout << "The number of unique words found in the file was " << uniqueWords << endl;
cout << "The number of collisions was " << collisions << endl << endl;
}
void HashTable::querySearch(string key, string searchStrat, int hashVal){
int collNum = 0, size = table.size(), index = djb2(key) % size;
if (key == table[index].first || table[index].first.empty()){
cout << key << " appears on lines " << "[";
for (int i = 0; i < table[index].second.size(); i++){
cout << table[index].second[i];
if (i != table[index].second.size() - 1){
cout << ",";
}
}
cout << "]" << endl;
cout << "The search had " << collNum << " collisions" << endl;
return;
}
if (searchStrat == "lp"){
while(1){
collNum++;
index = (djb2(key) + collNum) % size;
if (key == table[index].first || table[index].first.empty()){
cout << key << " appears on lines " << "[";
for (int i = 0; i < table[index].second.size(); i++){
cout << table[index].second[i];
if (i != table[index].second.size() - 1){
cout << ",";
}
}
cout << "]" << endl;
cout << "The search had " << collNum << " collisions" << endl;
return;
}
}
}
if (searchStrat == "qp"){
while(1){
collNum++;
index = (djb2(key) + collNum * collNum) % size;
if (key == table[index].first || table[index].first.empty()){
cout << key << " appears on lines " << "[";
for (int i = 0; i < table[index].second.size(); i++){
cout << table[index].second[i];
if (i != table[index].second.size() - 1){
cout << ",";
}
}
cout << "]" << endl;
cout << "The search had " << collNum << " collisions" << endl;
return;
}
}
}
if (searchStrat == "dh"){
while(1){
collNum++;
index = (djb2(key) + collNum * (hashVal - (djb2(key) % hashVal))) % size;
if (key == table[index].first || table[index].first.empty()){
cout << key << " appears on lines " << "[";
for (int i = 0; i < table[index].second.size(); i++){
cout << table[index].second[i];
if (i != table[index].second.size() - 1){
cout << ",";
}
}
cout << "]" << endl;
cout << "The search had " << collNum << " collisions" << endl;
return;
}
}
}
}
//End of HashTable Class
int main(int argc, char **argv) {
ifstream inFile(argv[1]);
ifstream queryFile(argv[2]);
int hashSize = stoi(argv[3]);
string collStrat = argv[4];
int dhValue;
if (collStrat == "dh"){
dhValue = stoi(argv[5]);
}
HashTable table;
table.resize(hashSize);
int lineCount = 1, wordCount = 0;
string curWord, curLine;
while(getline(inFile, curLine)){
int lineLen = curLine.length();
for (char c : curLine){
if (isalpha(c)){
curWord += tolower(c);
}
else if (curWord != ""){
wordCount++;
table.hashInsert(curWord, lineCount, collStrat, dhValue);
curWord = "";
}
}
if (curWord != ""){
wordCount++;
table.hashInsert(curWord, lineCount, collStrat, dhValue);
curWord = "";
}
lineCount++;
}
//table.print();
table.statPrinter(wordCount);
string queryWord;
vector<string> words;
while(queryFile >> queryWord){
words.push_back(queryWord);
}
for (int i = 0; i < words.size(); i++){
table.querySearch(words[i], collStrat, dhValue);
if (i < words.size() - 1){
cout << endl;
}
}
return 0;
}