![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This abstract class represents a item that can be contained in an Map (aka a sorted list implemented using an AVL tree). More...
This abstract class represents a item that can be contained in an Map (aka a sorted list implemented using an AVL tree).
The client sub-class is required to implement the 'getKey()' method (from the parent class DictItem).
NOTE: A MapItem can also be contained in a SList and/or a DList (but obviously not at the same time).
#include <MapItem.h>
Protected Types | |
enum | Balance_T { eLEFT_ =-1 , eEVEN_ =0 , eRIGHT_ =1 } |
Magic values for balance status. More... | |
Protected Member Functions | |
MapItem () | |
Constructor. | |
MapItem (const char *ignoreThisParameter_usedToCreateAUniqueConstructor) | |
Constructor -->special constructor to allow a Map to be statically allocated. | |
void | initialize (MapItem *parent) |
Initialize the node when being inserted in the tree. | |
MapItem * | getParent () const |
Get tree connection/pointer. | |
void | setParent (MapItem *n) |
Set tree connection/pointer. | |
MapItem * | getLeft () const |
Get tree connection/pointer. | |
void | setLeft (MapItem *n) |
Set tree connection/pointer. | |
MapItem * | getRight () const |
Get tree connection/pointer. | |
void | setRight (MapItem *n) |
Set tree connection/pointer. | |
![]() | |
virtual const Key & | getKey () const noexcept=0 |
This method returns a reference to the Item's Key instance. | |
DictItem () | |
Constructor. | |
DictItem (const char *ignoreThisParameter_usedToCreateAUniqueConstructor) | |
Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be statically allocated. | |
![]() | |
ExtendedItem () | |
Constructor. | |
ExtendedItem (const char *ignoreThisParameter_usedToCreateAUniqueConstructor) | |
Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be statically allocated. | |
![]() | |
Item () | |
Constructor. | |
Item (const char *) | |
Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be statically allocated. | |
Protected Attributes | |
void * | m_parentPtr_ |
Link field to the parent node. | |
bool | m_is_NOT_root_ |
I am the root node. | |
Balance_T | m_balance_ |
Balance status. | |
![]() | |
unsigned int | m_hashCode_ |
Remember which hash bucket I am stored in. | |
Friends | |
class | AvlTree_ |
Additional Inherited Members | |
![]() | |
bool | insert_ (void *newContainerPtr) |
Helper method to trap when inserting an item in multiple containers. | |
bool | isInContainer_ (const void *containerPtr) const noexcept |
Returns 'true' if the instance is in the specified container. | |
![]() | |
static void | remove_ (Item *itemPtr) noexcept |
Helper method to do the proper 'clean-up' for the multiple-containers-error-trap when removing an item from a container. | |
![]() | |
void * | m_prevPtr_ |
The previous link field. | |
![]() | |
void * | m_nextPtr_ |
The link field. | |
void * | m_inListPtr_ |
Debug field. | |
|
protected |
Magic values for balance status.
|
inlineprotected |
Constructor.
|
inlineprotected |
Constructor -->special constructor to allow a Map to be statically allocated.
Only the Sorted List itself should ever use this constructor -->not intended for Items in the list
|
inlineprotected |
Get tree connection/pointer.
|
inlineprotected |
Get tree connection/pointer.
|
inlineprotected |
Get tree connection/pointer.
Initialize the node when being inserted in the tree.
|
protected |
Balance status.
|
protected |
I am the root node.
|
protected |
Link field to the parent node.