1#ifndef Cpl_Container_DHashTable_x_h_
2#define Cpl_Container_DHashTable_x_h_
39 unsigned int m_numBuckets;
45 unsigned long m_numItems;
50 : m_buckets( buckets )
51 , m_numBuckets( numBuckets )
This concrete class implements the core functionality for a Dictionary and/or Hash Table.
Definition DHashTable_.h:33
DictItem * removeItem(DictItem &nodeToDelete)
See Cpl::Container::HashTable_.
Definition DHashTable_.h:63
void tableStats(HashTableStats &tableInfo) const
See Cpl::Container::HashTable_.
Definition DHashTable_.h:77
void insert(DictItem &node)
See Cpl::Container::HashTable_.
Definition DHashTable_.h:60
DHashTable_(DList< DictItem > buckets[], unsigned int numBuckets, HashFunc func=Cpl::Container::hashFuncDefault)
Constructor.
Definition DHashTable_.h:49
DictItem * first() const
See Cpl::Container::HashTable_.
Definition DHashTable_.h:69
DictItem * find(const Key &keyToFind) const
See Cpl::Container::HashTable_.
Definition DHashTable_.h:66
DictItem * next(DictItem ¤t) const
See Cpl::Container::HashTable_.
Definition DHashTable_.h:72
This template class implements a Doubly linked list which maintains the ordering imposed on it by the...
Definition DList.h:29
This abstract class represents a item that can be contained in Dictionary.
Definition DictItem.h:34
static void tableStats(HashTableStats &tableInfo, DList< DictItem > *buckets, unsigned int numBuckets, HashFunc hashFunc, unsigned long numItems) noexcept
Returns table stats.
static DictItem * removeItem(DictItem &nodeToDelete, DList< DictItem > *buckets, unsigned int numBuckets, HashFunc hashFunc, unsigned long &numItems) noexcept
Removes the specified item from the table.
static void insert(DictItem &node, DList< DictItem > *buckets, unsigned int numBuckets, HashFunc hashFunc, unsigned long &numItems) noexcept
Inserts an item into the table.
static DictItem * next(DictItem ¤t, DList< DictItem > *buckets, unsigned int numBuckets, HashFunc hashFunc) noexcept
Returns the next item in the table. Returns 0 if at the end-of-table.
static DictItem * first(DList< DictItem > *buckets, unsigned int numBuckets, HashFunc hashFunc, unsigned long numItems) noexcept
Returns the first item in the table. Returns 0 if table is empty.
static DictItem * find(const Key &keyToFind, DList< DictItem > *buckets, unsigned int numBuckets, HashFunc hashFunc) noexcept
Searches for a item with a matching key.
This abstract class defines the interface that a contained object must support if it has comparable k...
Definition Key.h:32
unsigned int(* HashFunc)(const void *keystart, unsigned keylen, unsigned int maxBuckets)
This type defines the function signature for the hashing function that operates on a key stored in co...
Definition Hash.h:23
unsigned int hashFuncDefault(const void *keystart, unsigned keylen, unsigned int maxBuckets) noexcept
Default hash function.
This struct defines what usage/stats can be retrieved from a Hash table.
Definition Hash.h:29
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20