![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This concrete provides a collection of functions used by the 'Hash Table' classes. More...
This concrete provides a collection of functions used by the 'Hash Table' classes.
This class is not intended to be used directly by clients.
Key collisions are handled by a simple link list for each 'hash bucket'.
NOTE: 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 or removed from the table.
#include <HashTable_.h>
|
staticnoexcept |
Searches for a item with a matching key.
Returns the node that matches, else 0.
|
staticnoexcept |
Returns the first item in the table. Returns 0 if table is empty.
|
staticnoexcept |
Inserts an item into the table.
|
staticnoexcept |
Returns the next item in the table. Returns 0 if at the end-of-table.
|
staticnoexcept |
Removes the specified item from the table.
Returns the node removed. If the remove fails (i.e. node does not exist in the table), then 0 is returned.
|
staticnoexcept |
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 hash table.