-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhashtable.h
414 lines (366 loc) · 9.92 KB
/
hashtable.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
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
/* Copyright (c) 2015 Regents of the University of California
*
* Author: Brian Demsky <[email protected]>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* version 2 as published by the Free Software Foundation.
*/
/** @file hashtable.h
* @brief Hashtable. Standard chained bucket variety.
*/
#ifndef __HASHTABLE_H__
#define __HASHTABLE_H__
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "mymemory.h"
#include "common.h"
/**
* @brief HashTable node
*
* @tparam _Key Type name for the key
* @tparam _Val Type name for the values to be stored
*/
template<typename _Key, typename _Val>
struct hashlistnode {
_Key key;
_Val val;
};
template<typename _Key, int _Shift, typename _KeyInt>
inline unsigned int default_hash_function(_Key hash) {
return (unsigned int)(((_KeyInt)hash) >> _Shift);
}
template<typename _Key>
inline bool default_equals(_Key key1, _Key key2) {
return key1 == key2;
}
/**
* @brief A simple, custom hash table
*
* By default it is snapshotting, but you can pass in your own allocation
* functions. Note that this table does not support the value 0 (NULL) used as
* a key and is designed primarily with pointer-based keys in mind. Other
* primitive key types are supported only for non-zero values.
*
* @tparam _Key Type name for the key
* @tparam _Val Type name for the values to be stored
* @tparam _KeyInt Integer type that is at least as large as _Key. Used for key
* manipulation and storage.
* @tparam _Shift Logical shift to apply to all keys. Default 0.
* @tparam _malloc Provide your own 'malloc' for the table, or default to
* snapshotting.
* @tparam _calloc Provide your own 'calloc' for the table, or default to
* snapshotting.
* @tparam _free Provide your own 'free' for the table, or default to
* snapshotting.
*/
template<typename _Key, typename _Val, typename _KeyInt, int _Shift = 0, void * (*_malloc)(size_t) = snapshot_malloc, void * (*_calloc)(size_t, size_t) = snapshot_calloc, void (*_free)(void *) = snapshot_free, unsigned int (*hash_function)(_Key) = default_hash_function<_Key, _Shift, _KeyInt>, bool (*equals)(_Key, _Key) = default_equals<_Key> >
class HashTable {
public:
/**
* @brief Hash table constructor
* @param initialcapacity Sets the initial capacity of the hash table.
* Default size 1024.
* @param factor Sets the percentage full before the hashtable is
* resized. Default ratio 0.5.
*/
HashTable(unsigned int initialcapacity = 1024, double factor = 0.5) {
// Allocate space for the hash table
table = (struct hashlistnode<_Key, _Val> *)_calloc(initialcapacity, sizeof(struct hashlistnode<_Key, _Val>));
zero = NULL;
loadfactor = factor;
capacity = initialcapacity;
capacitymask = initialcapacity - 1;
threshold = (unsigned int)(initialcapacity * loadfactor);
size = 0; // Initial number of elements in the hash
}
/** @brief Hash table destructor */
~HashTable() {
_free(table);
if (zero)
_free(zero);
}
/** Override: new operator */
void * operator new(size_t size) {
return _malloc(size);
}
/** Override: delete operator */
void operator delete(void *p, size_t size) {
_free(p);
}
/** Override: new[] operator */
void * operator new[](size_t size) {
return _malloc(size);
}
/** Override: delete[] operator */
void operator delete[](void *p, size_t size) {
_free(p);
}
/** @brief Reset the table to its initial state. */
void reset() {
real_memset(table, 0, capacity * sizeof(struct hashlistnode<_Key, _Val>));
if (zero) {
_free(zero);
zero = NULL;
}
size = 0;
}
void resetanddelete() {
for(unsigned int i=0;i<capacity;i++) {
struct hashlistnode<_Key, _Val> *bin = &table[i];
if (bin->key != NULL) {
bin->key = NULL;
if (bin->val != NULL) {
delete bin->val;
bin->val = NULL;
}
}
}
if (zero) {
if (zero->val != NULL)
delete zero->val;
_free(zero);
zero = NULL;
}
size = 0;
}
void resetandfree() {
for(unsigned int i=0;i<capacity;i++) {
struct hashlistnode<_Key, _Val> *bin = &table[i];
if (bin->key != NULL) {
bin->key = NULL;
if (bin->val != NULL) {
_free(bin->val);
bin->val = NULL;
}
}
}
if (zero) {
if (zero->val != NULL)
_free(zero->val);
_free(zero);
zero = NULL;
}
size = 0;
}
/**
* @brief Put a key/value pair into the table
* @param key The key for the new value; must not be 0 or NULL
* @param val The value to store in the table
*/
void put(_Key key, _Val val) {
/* HashTable cannot handle 0 as a key */
if (!key) {
if (!zero) {
zero=(struct hashlistnode<_Key, _Val> *)_malloc(sizeof(struct hashlistnode<_Key, _Val>));
size++;
}
zero->key=key;
zero->val=val;
return;
}
if (size > threshold)
resize(capacity << 1);
struct hashlistnode<_Key, _Val> *search;
struct hashlistnode<_Key, _Val> *first = NULL;
unsigned int index = hash_function(key) & capacitymask;
unsigned int oindex = index;
do {
search = &table[index];
if (!search->key) {
//key is null, probably done
if (!search->val)
break;
if (first == NULL)
first = search;
}
if (equals(search->key, key)) {
search->val = val;
return;
}
index = (index + 1) & capacitymask;
if (index == oindex) {
if (first == NULL)
exit(-1);
break;
}
} while (true);
if (first != NULL) {
first->key = key;
first->val = val;
} else {
search->key = key;
search->val = val;
}
size++;
}
/**
* @brief Lookup the corresponding value for the given key
* @param key The key for finding the value; must not be 0 or NULL
* @return The value in the table, if the key is found; otherwise 0
*/
_Val get(_Key key) const {
struct hashlistnode<_Key, _Val> *search;
/* HashTable cannot handle 0 as a key */
if (!key) {
if (zero)
return zero->val;
else
return (_Val) 0;
}
unsigned int oindex = hash_function(key) & capacitymask;
unsigned int index = oindex;
do {
search = &table[index];
if (!search->key) {
if (!search->val)
break;
} else
if (equals(search->key, key))
return search->val;
index++;
index &= capacitymask;
if (index==oindex)
break;
} while (true);
return (_Val)0;
}
/**
* @brief Remove the given key and return the corresponding value
* @param key The key for finding the value; must not be 0 or NULL
* @return The value in the table, if the key is found; otherwise 0
*/
_Val remove(_Key key) {
struct hashlistnode<_Key, _Val> *search;
struct hashlistnode<_Key, _Val> *replace;
/* HashTable cannot handle 0 as a key */
if (!key) {
if (!zero) {
return (_Val)0;
} else {
_Val v=zero->val;
_free(zero);
zero=NULL;
size--;
return v;
}
}
unsigned int index = hash_function(key);
do {
index &= capacitymask;
search = &table[index];
if (!search->key) {
if (!search->val)
break;
} else {
// The case where an item is found
if (equals(search->key, key)) {
unsigned int j = index;
_Val v = search->val;
size--;
// Idea: keep bins contiguous
while (true) {
search->val = 0;
search->key = 0;
while (true) {
j = (j + 1) & capacitymask;
replace = &table[j];
if (!replace->key && !replace->val) {
return v;
}
unsigned int hash = hash_function(replace->key) & capacitymask;
if (index <= j && index < hash && hash <= j)
continue;
else if (index > j && (index < hash || hash <= j) )
continue;
else
break;
}
table[index] = table[j];
index = j;
search = &table[index];
}
}
}
index++;
} while (true);
return (_Val)0;
}
unsigned int getSize() const {
return size;
}
bool isEmpty() {
return size == 0;
}
/**
* @brief Check whether the table contains a value for the given key
* @param key The key for finding the value; must not be 0 or NULL
* @return True, if the key is found; false otherwise
*/
bool contains(_Key key) const {
struct hashlistnode<_Key, _Val> *search;
/* HashTable cannot handle 0 as a key */
if (!key) {
return zero!=NULL;
}
unsigned int index = hash_function(key);
do {
index &= capacitymask;
search = &table[index];
if (!search->key) {
if (!search->val)
break;
} else
if (equals(search->key, key))
return true;
index++;
} while (true);
return false;
}
/**
* @brief Resize the table
* @param newsize The new size of the table
*/
void resize(unsigned int newsize) {
struct hashlistnode<_Key, _Val> *oldtable = table;
struct hashlistnode<_Key, _Val> *newtable;
unsigned int oldcapacity = capacity;
if ((newtable = (struct hashlistnode<_Key, _Val> *)_calloc(newsize, sizeof(struct hashlistnode<_Key, _Val>))) == NULL) {
model_print("calloc error %s %d\n", __FILE__, __LINE__);
exit(EXIT_FAILURE);
}
table = newtable; // Update the global hashtable upon resize()
capacity = newsize;
capacitymask = newsize - 1;
threshold = (unsigned int)(newsize * loadfactor);
struct hashlistnode<_Key, _Val> *bin = &oldtable[0];
struct hashlistnode<_Key, _Val> *lastbin = &oldtable[oldcapacity];
for (;bin < lastbin;bin++) {
_Key key = bin->key;
struct hashlistnode<_Key, _Val> *search;
if (!key)
continue;
unsigned int index = hash_function(key);
do {
index &= capacitymask;
search = &table[index];
index++;
} while (search->key);
search->key = key;
search->val = bin->val;
}
_free(oldtable); // Free the memory of the old hash table
}
double getLoadFactor() {return loadfactor;}
unsigned int getCapacity() {return capacity;}
struct hashlistnode<_Key, _Val> *table;
struct hashlistnode<_Key, _Val> *zero;
unsigned int capacity;
unsigned int size;
private:
unsigned int capacitymask;
unsigned int threshold;
double loadfactor;
};
#endif /* __HASHTABLE_H__ */