![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This template class implements a Dictionary and/or Hash Table with a FIXED memory allocation (i.e. More...
This template class implements a Dictionary and/or Hash Table with a FIXED memory allocation (i.e.
memory for the dictionary is not supplied via the constructor).
Collisions are handled by a simple link list for each 'hash bucket'.
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: 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. NBUCKETS - The number of hash buckets (see above for recommend values)
#include <FDictionary.h>
Public Member Functions | |
FDictionary () | |
Constructor. | |
FDictionary (const char *ignoreThisParameter_usedToCreateAUniqueConstructor) | |
Constructor when statically allocating the instance. | |
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 (FDictionary< ITEM, NBUCKETS > &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.
|
inline |
Constructor when statically allocating the instance.
void Cpl::Container::FDictionary< ITEM, NBUCKETS >::clearTheDictionary | ( | ) |
Empties the Dictionary.
All references to the item(s) in the dictionary are lost.
Searches for a item with a matching key.
Returns the node that matches, else 0.
ITEM * Cpl::Container::FDictionary< ITEM, NBUCKETS >::first | ( | ) | const |
Returns the first item in the table. Returns 0 if table is empty.
ITEM * Cpl::Container::FDictionary< ITEM, NBUCKETS >::getFirst | ( | ) |
Removes the first item in the list.
Returns 0 if the list is empty.
void Cpl::Container::FDictionary< ITEM, NBUCKETS >::insert | ( | ITEM & | node | ) |
Inserts an item into the table.
bool Cpl::Container::FDictionary< ITEM, NBUCKETS >::isInDictionary | ( | ITEM & | node | ) | const |
Returns true if the specified item is in the Dictionary; else false is returned.
void Cpl::Container::FDictionary< ITEM, NBUCKETS >::move | ( | FDictionary< ITEM, NBUCKETS > & | dst | ) |
Moves the content of the this Dictionary to the specified Dictionary.
ITEM * Cpl::Container::FDictionary< ITEM, NBUCKETS >::next | ( | ITEM & | current | ) | const |
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!
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.
bool Cpl::Container::FDictionary< ITEM, NBUCKETS >::removeItem | ( | ITEM & | node | ) |
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::FDictionary< ITEM, NBUCKETS >::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.