![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This template class implements a Dictionary and/or Hash Table. More...
This template class implements a Dictionary and/or Hash Table.
Hash Collisions are handled by a simple link list for each 'hash bucket'.
o The application is responsible for providing memory for the Dictionary, i.e. must provide an array of DList<ITEM> where the size of the array is the 'number of buckets' in the hash table. o This is no checking for duplicate keys. You can insert multiple items with duplicates keys, but there is no guaranty on how those items are found in searches and/or removed from the table. o There is no limit to the number of items that can be stored in the table. However, there is a performance penalty as the ratio of items vs. table buckets increases. Recommended size: For the default hash function use a prime number. Here is a list of some useful primes: 67, 131, 257, 521, 1031, 2053, 4099, 8209, 16411
Template ARGS: ITEM - Data type of the object stored in the dictionary. 'ITEM' must be a sub-class of the Cpl::Container::DictItem base class.
#include <Dictionary.h>
Public Member Functions | |
Dictionary (DList< DictItem > buckets[], unsigned int numBuckets, HashFunc hfunc=Cpl::Container::hashFuncDefault) | |
Constructor. Note: Client provides the memory for the table. | |
Operations to manage items in the Dictionary | |
void | insert (ITEM &node) |
Inserts an item into the table. | |
ITEM * | remove (const Key &keyOfObjectToDelete) |
Removes the node (if it exists) that has the matching key. | |
bool | removeItem (ITEM &node) |
Removes the specified item from the table. | |
ITEM * | find (const Key &keyToFind) const |
Searches for a item with a matching key. | |
bool | isInDictionary (ITEM &node) const |
Returns true if the specified item is in the Dictionary; else false is returned. | |
ITEM * | first () const |
Returns the first item in the table. Returns 0 if table is empty. | |
ITEM * | next (ITEM ¤t) const |
Returns the next item in the table. | |
ITEM * | getFirst () |
Removes the first item in the list. | |
Operations on the Dictionary itself | |
void | move (Dictionary< ITEM > &dst) |
Moves the content of the this Dictionary to the specified Dictionary. | |
void | clearTheDictionary () |
Empties the Dictionary. | |
void | stats (HashTableStats &tableInfo) const |
Returns table stats. | |
|
inline |
Constructor. Note: Client provides the memory for the table.
void Cpl::Container::Dictionary< ITEM >::clearTheDictionary | ( | ) |
Empties the Dictionary.
All references to the item(s) in the dictionary are lost.
ITEM * Cpl::Container::Dictionary< ITEM >::find | ( | const Key & | keyToFind | ) | const |
Searches for a item with a matching key.
Returns the node that matches, else 0.
ITEM * Cpl::Container::Dictionary< ITEM >::first | ( | ) | const |
Returns the first item in the table. Returns 0 if table is empty.
ITEM * Cpl::Container::Dictionary< ITEM >::getFirst | ( | ) |
Removes the first item in the list.
Returns 0 if the list is empty.
Inserts an item into the table.
Returns true if the specified item is in the Dictionary; else false is returned.
void Cpl::Container::Dictionary< ITEM >::move | ( | Dictionary< ITEM > & | dst | ) |
Moves the content of the this Dictionary to the specified Dictionary.
Returns the next item in the table.
Returns 0 if at the end-of-table Note: There is NO ORDER of the items stored in the Dictionary!
ITEM * Cpl::Container::Dictionary< ITEM >::remove | ( | const Key & | keyOfObjectToDelete | ) |
Removes the node (if it exists) that has the matching key.
Returns the node removed from the table or 0 if no key match was found.
Removes the specified item from the table.
Returns true when the node was found and removed; else false is returned (i.e. node not exists in the table).
void Cpl::Container::Dictionary< ITEM >::stats | ( | HashTableStats & | tableInfo | ) | const |
Returns table stats.
Caller provides the memory for the stats structure.
Note: The stats are not calculate/gathered until this method is called. The duration of this call is directly related to the number of items in the dictionary.