GM6000 Digital Heater Controller Branch: main
SDX-1330
AvlTree_.h
Go to the documentation of this file.
1#ifndef Cpl_Container_AvlTree_x_h_
2#define Cpl_Container_AvlTree_x_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15#include "colony_config.h"
17
18
19/** This option sets the maximum depth of the AVL Tree. Do NOT override the
20 default value unless you REALLY know what you are doing.
21 */
22#ifndef OPTION_CPL_CONTAINER_AVLTREE_MAX_TREE_DEPTH
23#define OPTION_CPL_CONTAINER_AVLTREE_MAX_TREE_DEPTH 32
24#endif
25
26
27///
28namespace Cpl {
29///
30namespace Container {
31
32/** This concrete class implements the core functionality of for
33 AVL Binary tree (i.e. a sorted list with fast searches, inserts,
34 and deletes). Tree does not allow duplicate keys. Clients should
35 NOT USE THIS CLASS DIRECTLY, but via a Map. The Map
36 class is a wrapper that makes the AVL tree type safe.
37
38 This class was adapted from Jonathan Bertoni C code snippet:
39 'non-recursive non-allocating avl tree code'
40
41 The original code is in the public domain and is available at:
42 https://sourceforge.net/snippet/detail.php?type=snippet&id=100933
43 */
44
46{
47private:
48 /// Helper class so that the root node can behave like all the other nodes
49 class AvlRoot : public MapItem,
50 public Key
51 {
52 public:
53 ///
54 const Key& getKey() const noexcept;
55 ///
56 int compareKey( const Key& key ) const;
57 ///
58 const void* getRawKey( unsigned* returnRawKeyLenPtr = 0 ) const;
59
60 public:
61 /// Constructor
62 AvlRoot();
63
64 /// Special constructor
65 AvlRoot( const char* ignoreThisParameter_usedToCreateAUniqueConstructor );
66
67 };
68
69 /// Root Node
70 AvlRoot m_root;
71
72
73public:
74 /// Constructor
76
77 /** This is a special constructor for when the list is
78 statically declared (i.e. it is initialized as part of
79 C++ startup BEFORE main() is executed. C/C++ guarantees
80 that all statically declared data will be initialized
81 to zero by default (see r.8.4 in C++ Programming Language,
82 Second Edition). Since the head & tail pointers are
83 initialized to zero - then the C/C++ default is OK. Why
84 do I care about all this? Because if you attempt to build
85 static list(s), then the order of when the list is
86 constructed vs. when the static elements are added to the
87 list is a problem! To avoid this problem, a alternate
88 constructor that does NOT initialize the head & tail pointers
89 is provided. It assumes that the pointers are already set
90 zero because the list is "static". Whew!
91 */
92 AvlTree_( const char* ignoreThisParameter_usedToCreateAUniqueConstructor );
93
94public:
95 /** Inserts an item into the tree. If the node is successfully inserted,
96 then the method return true. If the tree already contains a node
97 with the same key, then the method returns false.
98 */
99 bool insert( MapItem& node );
100
101 /** Deletes the specified item from the tree. Returns the
102 node deleted. If the delete fails (i.e. node does
103 not exist in the tree), then 0 is returned.
104 */
106
107 /// Searches for a item with a matching key. Returns 0 if not found
108 MapItem* find( const Key& keyToFind ) const;
109
110 /// Returns the first item in the tree. Returns 0 if tree is empty
111 MapItem* first() const;
112
113 /// Returns the last item in the tree. Returns 0 if tree is empty
114 MapItem* last() const;
115
116 /// Returns the next item in the tree. Returns 0 if at the end-of-tree
117 static MapItem* next( MapItem& current );
118
119 /// Returns the previous item in the tree. Returns 0 if at the start-of-tree
120 static MapItem* previous( MapItem& current );
121
122
123private: // Helpers
124 ///
125 static bool grewLeft( MapItem* nodePtr );
126 ///
127 static bool grewRight( MapItem* nodePtr );
128 ///
129 static bool rightShorter( MapItem* nodePtr );
130 ///
131 static bool leftShorter( MapItem* nodePtr );
132 ///
133 static MapItem* rotateLeft( MapItem* nodePtr );
134 ///
135 static MapItem* rotateRight( MapItem* nodePtr );
136 ///
137 static void exchangeWithPrev( MapItem* nodePtr );
138
139};
140
141}; // end namespaces
142};
143#endif // end header latch
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 &current)
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 &current)
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