Gator Library
An implementation of the Red-Black Tree and Priority queue data structure in C++.
|
Go to the source code of this file.
Classes | |
class | RbtNode |
Represents a node in the red-black tree. More... | |
class | RBTree |
Header file for the RBTree class and RbtNode class. More... | |
Macros | |
#define | rbtree RBTree |
Red-black tree type. | |
#define | rbtnode RbtNode |
Red-black tree node type. | |
Enumerations | |
enum | Color { RED , BLACK } |
Represents the color of a node in the red-black tree. More... | |
#define rbtnode RbtNode |
Red-black tree node type.
#define rbtree RBTree |
Red-black tree type.
enum Color |