#include "AVLRedBlackNode.h"
#include "CompareAlgorithms.h"
#include "TestAVLRedBlackTree.h"
#include "AGenericTree.h"
#include <limits.h>
Go to the source code of this file.
Classes | |
| class | TraverseNode< Data > |
| Stores information on the traversal of nodes by the AVL red-black tree. More... | |
| class | AVLRedBlackTree< Data, ConfigData > |
| A templated red-black tree class. More... | |
Defines | |
| #define | RB_MAX_HEIGHT 32 |
| Maximum height (depth) of an AVL red-black tree. | |
Enumerations | |
| enum | StackDirection { SDLEFT = 0, SDRIGHT } |
| Direction of node on the stack. | |
Definition in file AVLRedBlackTree.h.
1.4.4