1#ifndef Cpl_Container_Dictionary_h_
2#define Cpl_Container_Dictionary_h_
59 : m_table( buckets, numBuckets, hfunc ) {}
71 ITEM*
remove(
const Key& keyOfObjectToDelete );
82 ITEM*
find(
const Key& keyToFind )
const;
95 ITEM*
next( ITEM& current )
const;
149 while ( (nextPtr=getFirst()) )
166 m_table.insert( node );
172 ITEM* nodePtr = find( keyOfObjectToDelete );
175 return (ITEM*) m_table.removeItem( *nodePtr );
183 return m_table.removeItem( node ) != 0;
189 ITEM* nodePtr = first();
192 return (ITEM*) m_table.removeItem( *nodePtr );
201 return (ITEM*) m_table.find( keyToFind );
207 return node.isInContainer_(
this );
213 return (ITEM*) m_table.first();
219 return (ITEM*) m_table.next( current );
225 m_table.tableStats( tableInfo );
This concrete class implements the core functionality for a Dictionary and/or Hash Table.
Definition DHashTable_.h:33
This template class implements a Doubly linked list which maintains the ordering imposed on it by the...
Definition DList.h:29
This template class implements a Dictionary and/or Hash Table.
Definition Dictionary.h:50
void stats(HashTableStats &tableInfo) const
Returns table stats.
Definition Dictionary.h:223
bool removeItem(ITEM &node)
Removes the specified item from the table.
Definition Dictionary.h:181
Dictionary(DList< DictItem > buckets[], unsigned int numBuckets, HashFunc hfunc=Cpl::Container::hashFuncDefault)
Constructor. Note: Client provides the memory for the table.
Definition Dictionary.h:58
ITEM * remove(const Key &keyOfObjectToDelete)
Removes the node (if it exists) that has the matching key.
Definition Dictionary.h:170
ITEM * first() const
Returns the first item in the table. Returns 0 if table is empty.
Definition Dictionary.h:211
ITEM * getFirst()
Removes the first item in the list.
Definition Dictionary.h:187
void move(Dictionary< ITEM > &dst)
Moves the content of the this Dictionary to the specified Dictionary.
Definition Dictionary.h:142
ITEM * next(ITEM ¤t) const
Returns the next item in the table.
Definition Dictionary.h:217
void clearTheDictionary()
Empties the Dictionary.
Definition Dictionary.h:156
ITEM * find(const Key &keyToFind) const
Searches for a item with a matching key.
Definition Dictionary.h:199
bool isInDictionary(ITEM &node) const
Returns true if the specified item is in the Dictionary; else false is returned.
Definition Dictionary.h:205
void insert(ITEM &node)
Inserts an item into the table.
Definition Dictionary.h:164
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