-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSeperateChaining.h
174 lines (156 loc) · 4.92 KB
/
SeperateChaining.h
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
//
// Created by isaac on 11/19/2019.
//
#ifndef HASHINGB_SEPARATECHAINING_H
#define HASHINGB_SEPARATECHAINING_H
// If this produces errors, go into CMakeLists.txt and change the 14 to 17.
#if __cplusplus < 17
#include <experimental/optional>
using std::experimental::optional;
using std::experimental::nullopt;
using std::experimental::make_optional;
#else
#include <optional>
using std::optional;
using std::nullopt;
using std::make_optional;
#endif
#include <iostream>
#include <functional>
#include <string>
#include <vector>
using std::vector;
using std::function;
using std::string;
using std::cout;
using std::endl;
template<typename Object>
class SeparateChaining {
private:
vector<vector<Object>> table;
// function to get the string key from an Object
function<string(const Object &)> getKey;
unsigned long hornerHash(string key) {
unsigned long hashVal = 0;
for (char letter : key) {
hashVal = hashVal * 37 + letter;
}
return hashVal % table.size();
}
//sdbm taken from https://stackoverflow.com/questions/14409466/simple-hash-functions
unsigned long sdbmHash(string key) {
unsigned long hashVal = 0;
for (char letter : key){
hashVal = letter + (hashVal << 6) + (hashVal << 16) - hashVal;
}
return hashVal % table.size();
}
// Find the next prime number
int nextPrime(int n) {
if (n % 2 == 0) {
++n;
}
bool prime = false;
while (!prime) {
prime = true;
for (int i = 3; i * i <= n; i += 2) {
if (n % i == 0) {
prime = false;
}
}
n += 2;
}
return (n-2);
}
public:
// Constructor
SeparateChaining(unsigned int tableSize, function<string(const Object &)> getKey) {
table.clear();
// resizing should create empty vectors at each index
table.resize(nextPrime(tableSize));
this->getKey = getKey;
}
// insert
void insert(Object item, int &numReads) {
// get the key from the item
string key = getKey(item);
// hash the key to get the index
unsigned long index = hornerHash(key);
// make sure we aren't adding a duplicate to the table
for (int i = 0; i < table[index].size(); ++i) {
++numReads; //Accessing Table Element in the if boolean that follows to check for dupes,, increase # reads
if (key == getKey(table[index][i])) {
// found a duplicate
// cannot insert
return;
}
}
// add the item to the vector at the index in the table
table[index].push_back(item);
}
//Alt Insert
void altInsert(Object item, int &numReads) {
// get the key from the item
string key = getKey(item);
// hash the key to get the index
unsigned long index = sdbmHash(key);
// make sure we aren't adding a duplicate to the table
for (int i = 0; i < table[index].size(); ++i) {
++numReads; //Accessing Table Element in the if boolean that follows to check for dupes,, increase # reads
if (key == getKey(table[index][i])) {
// found a duplicate
// cannot insert
return;
}
}
// add the item to the vector at the index in the table
table[index].push_back(item);
}
// find
optional<Object> find(string key) {
// hash the key to get the index
unsigned long index = hornerHash(key);
// check the vector at the index to find the item
int i = 0;
while (i < table[index].size()) {
string hashKey = getKey(table[index][i]);
if (hashKey == key) {
// Found the item
return table[index][i];
}
++i;
}
// Did not find the item
return nullopt;
}
// remove
optional<Object> remove(string key) {
// hash the key to get the index
unsigned long index = hornerHash(key);
// check the vector at the index to find the item
int i = 0;
while (i < table[index].size()) {
string hashKey = getKey(table[index][i]);
if (hashKey == key) {
// Found the item
Object returnVal = table[index][i];
// Remove the item from the table
table[index].erase(table[index].begin() + i);
return returnVal;
}
++i;
}
// Did not find the item
return nullopt;
}
void printTable() {
for (int i = 0; i < table.size(); ++i) {
cout << i << ": ";
for (int j = 0; j < table[i].size(); ++j) {
cout << table[i][j] << ", ";
}
cout << endl;
}
}
};
#endif //HASHINGB_SEPARATECHAINING_H