#include "gft_hashtable.h"
Namespaces | |
gft | |
Base namespace for common definitions and prototypes. | |
gft::HashTable | |
Functions | |
HashTable * | gft::HashTable::Create (int size) |
A constructor. More... | |
void | gft::HashTable::Destroy (HashTable **ht) |
A destructor. More... | |
int | gft::HashTable::HashPosition (HashTable *ht, char *key) |
void | gft::HashTable::Insert (HashTable *ht, char *key, void *value) |
Insert the pair (key, value) in the hash table. More... | |
void * | gft::HashTable::Search (HashTable *ht, char *key) |
Search for the value associated with a key. More... | |