Skip to content

cplusplus-algorithms-by-stan/bottom-up-red-black-trees

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

bottom-up red-black trees

The characteristics of a red-black tree are as follows:

  1. Each node has the color of red or black
  2. The color of a virtual node (a node that has the value of a nullptr) is black
  3. A red node always has two black children.
  4. Each possible route from a node to a virtual node has to have the same number of black nodes. This number is called the black height of a node.
  5. The root is black. This is not necessary per se, but makes the process of maintaining a red-black tree easier.

Red-black tree search, add and delete by using bottom-up are coded and explained in this repository. Cases will be used to explain how red-black trees can keep their characteristics. The cases described below also count in case the tree is mirrored (left part becomes right part and vice versa).

bottom-up add

In bottom-up add, the characteristics of the red-black tree are only violated if a node is added as a child of a red node. This is the case since an added node is always red which means that the parent of the added node is red an only has one black child. This violates rule three of a red-black tree its characteristics.

The three following cases are used to resolve this violation:

case 1

case 1

case 2

case 2

case 3

case 3

After case three is executed, it becomes case two.

bottom-up delete

In bottom-up delete, the successor (or predecessor) of the node that needs to be deleted is searched. If a successor is found, the values of the successor node and the node that needs to be deleted are swapped and then the successor node gets deleted. The black depth of the red-black three is not affected if the successor was red or if the successor had a child that was red (if the successor is black and the child is red than the red child takes the place of the successor and becomes black).

If however, the successor is black and has no red childs than the characteristics of the red-black tree are violated. The deleted successor becomes a double black node. This double black node needs to be removed from the red-black tree and this can be done according to the following cases:

case 1

case 1

case 2

case 2

case 3

case 3

After case three is executed, it becomes case two.

case 4

case 4

After case four is executed, it becomes one of the cases above.

About

Red-black tree search, add and delete by using bottom-up.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages