#include "access.hpp"
#include "bintree.hpp"
#include "delete.hpp"
#include <iostream>
Go to the source code of this file.
◆ kRBTreeNodeColorBlack
| #define kRBTreeNodeColorBlack 0x01 |
◆ kRBTreeNodeColorRed
| #define kRBTreeNodeColorRed 0x00 |
Node colors.
author: Brando date: 8/19/22
◆ kRBTreeNodeMaskColor
| #define kRBTreeNodeMaskColor 0x0F |
The color should be stored in the least significant 4 bits of a byte
◆ kRBTreeNodeMaskColorCount
| #define kRBTreeNodeMaskColorCount 0xF0 |
Color count will be in the most significant 4 bits of a byte