-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHashTable.cpp
More file actions
186 lines (182 loc) · 3.08 KB
/
HashTable.cpp
File metadata and controls
186 lines (182 loc) · 3.08 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
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
#include <iostream>
#include <random>
using namespace std;
template <class HashObject>
struct HashNode
{
int key = -1;
HashObject data;
};
template <class HashObject>
class Hash
{
int size;
char probe;
HashNode<HashObject> **table;
public:
Hash(int size, char p)
{
this->size = size;
probe = p;
table = new HashNode<HashObject> *[size];
for (int i = 0; i < size; i++)
table[i] = nullptr;
}
~Hash()
{
for (int i = 0; i < size; i++)
{
if (table[i] != nullptr)
delete table[i];
}
delete[] table;
}
int hashFunction(HashObject value)
{
return value % size;
}
int probing(int key)
{
int index = key;
int count = 0;
switch (probe)
{
case 'l':
case 'L':
{
while (count++ < size)
{
if (table[index] == nullptr)
return index;
index = (key + count) % size;
}
break;
}
case 'q':
case 'Q':
{
while (count++ < size)
{
if (table[index] == nullptr)
return index;
index = (key + (count * count)) % size;
}
break;
}
case 'r':
case 'R':
{
while (count++ < 2 * size)
{
if (table[index] == nullptr)
return index;
index = (key + rand()) % size;
}
break;
}
}
return -1;
}
int probing(int key, HashObject value)
{
int index = key;
int count = 0;
switch (probe)
{
case 'l':
case 'L':
{
while (count++ < size)
{
if (table[index] != nullptr && table[index]->data == value)
return index;
index = (key + count) % size;
}
break;
}
case 'q':
case 'Q':
{
while (count++ < 2 * size)
{
if (table[index] != nullptr && table[index]->data == value)
return index;
index = (key + (count * count)) % size;
}
break;
}
case 'r':
case 'R':
{
while (count++ < 2 * size)
{
if (table[index] != nullptr && table[index]->data == value)
return index;
index = (key + rand()) % size;
}
break;
}
}
return -1;
}
bool insert(HashObject data)
{
int index = probing(hashFunction(data));
if (index == -1)
{
return false;
}
HashNode<HashObject> *node = new HashNode<HashObject>;
node->key = index;
node->data = data;
table[index] = node;
return true;
}
bool search(HashObject data)
{
int index = probing(hashFunction(data),data);
if (index == -1)
{
cout << "Value: " << data << ", Does Not Exist.\n";
return false;
}
cout << "Value: " << data << ", Does Exist.\n";
return true;
}
void display()
{
cout << "{";
for (int i = 0; i < size; i++)
{
if (table[i] != nullptr)
cout << table[i]->data << ", ";
}
cout << "\b\b}";
}
};
// int main()
// {
// int size;
// char p;
// cout << "Enter size of HashTable: ";
// cin >> size;
// cout << "Enter Probing Method(L/l: Linear Probing,Q/q :Quadratic Probing,R/r: Random Probing): ";
// cin >> p;
// Hash<int> h(size, p);
// // for (int i = size; i > 0; i--)
// // {
// // h.insert(i);
// // }
// h.insert(10);
// h.insert(30);
// h.insert(11);
// h.insert(21);
// h.insert(20);
// h.insert(44);
// int s;
// cout << "Enter value to search: ";
// cin >> s;
// h.search(s);
// h.display();
// return 0;
// }