1#ifndef Cpl_Container_FHashTable_x_h_
2#define Cpl_Container_FHashTable_x_h_
62 FHashTable_(
const char* ignoreThisParameter_usedToCreateAUniqueConstructor)
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
This concrete class implements the core functionality for a Dictionary and/or Hash Table.
Definition FHashTable_.h:38
FHashTable_()
Constructor.
Definition FHashTable_.h:54
unsigned long m_numItems
Number of items in the table.
Definition FHashTable_.h:50
FHashTable_(const char *ignoreThisParameter_usedToCreateAUniqueConstructor)
Constructor when statically allocating the instance.
Definition FHashTable_.h:62
MemDList m_memBuckets[N]
Memory for an array of hash buckets.
Definition FHashTable_.h:47
DictItem * next(DictItem ¤t) const
See Cpl::Container::HashTable_.
Definition FHashTable_.h:81
DictItem * find(const Key &keyToFind) const
See Cpl::Container::HashTable_.
Definition FHashTable_.h:75
DictItem * first() const
See Cpl::Container::HashTable_.
Definition FHashTable_.h:78
void tableStats(HashTableStats &tableInfo) const
See Cpl::Container::HashTable_.
Definition FHashTable_.h:86
DictItem * removeItem(DictItem &nodeToDelete)
See Cpl::Container::HashTable_.
Definition FHashTable_.h:72
void insert(DictItem &node)
See Cpl::Container::HashTable_.
Definition FHashTable_.h:69
Struct to allocate Memory for array of hash buckets.
Definition FHashTable_.h:42
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 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