A hash table class. More...
Public Member Functions | |
| HashTable (int size=TSIZE) | |
| Initialise the hash table to be length size. | |
| HASHREC< H, T > * | hashsearch (H w) |
| Look up the key w and return the record if found. | |
| void | hashinsert (H w, T data) |
| Insert a record with key w and given data. | |
| HASHREC< H, T > ** | begin (void) |
| Return a pointer to the beginning of the hash table. | |
A hash table class.
This class is a hash table used to efficiently store and retieve HASHREC items.
1.6.1