1#ifndef Cpl_Container_AvlTree_x_h_
2#define Cpl_Container_AvlTree_x_h_
15#include "colony_config.h"
22#ifndef OPTION_CPL_CONTAINER_AVLTREE_MAX_TREE_DEPTH
23#define OPTION_CPL_CONTAINER_AVLTREE_MAX_TREE_DEPTH 32
54 const Key& getKey()
const noexcept;
56 int compareKey(
const Key& key )
const;
58 const void* getRawKey(
unsigned* returnRawKeyLenPtr = 0 )
const;
65 AvlRoot(
const char* ignoreThisParameter_usedToCreateAUniqueConstructor );
92 AvlTree_(
const char* ignoreThisParameter_usedToCreateAUniqueConstructor );
125 static bool grewLeft(
MapItem* nodePtr );
127 static bool grewRight(
MapItem* nodePtr );
129 static bool rightShorter(
MapItem* nodePtr );
131 static bool leftShorter(
MapItem* nodePtr );
137 static void exchangeWithPrev(
MapItem* nodePtr );
This concrete class implements the core functionality of for AVL Binary tree (i.e.
Definition AvlTree_.h:46
MapItem * removeItem(MapItem &node)
Deletes the specified item from the tree.
AvlTree_(const char *ignoreThisParameter_usedToCreateAUniqueConstructor)
This is a special constructor for when the list is statically declared (i.e.
MapItem * find(const Key &keyToFind) const
Searches for a item with a matching key. Returns 0 if not found.
static MapItem * previous(MapItem ¤t)
Returns the previous item in the tree. Returns 0 if at the start-of-tree.
MapItem * first() const
Returns the first item in the tree. Returns 0 if tree is empty.
MapItem * last() const
Returns the last item in the tree. Returns 0 if tree is empty.
bool insert(MapItem &node)
Inserts an item into the tree.
static MapItem * next(MapItem ¤t)
Returns the next item in the tree. Returns 0 if at the end-of-tree.
This abstract class defines the interface that a contained object must support if it has comparable k...
Definition Key.h:32
This abstract class represents a item that can be contained in an Map (aka a sorted list implemented ...
Definition MapItem.h:33
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20