A Red Black Tree is a special kind of tree that has the ability to ensure a balanced tree height to make sure traversal of the tree is done in an efficient, effective manner.
Measures taken to the tree to maintain balance by changing the color of the nodes and rotating nodes.
Measures taken to the tree to make properties hold after removing a node if a property is broken
Same as a normal binary search tree, expect in a red black-tree's case, the tree will never act as a linked list, with the height always being balanced.
For more details, visit Red Black Tree Introduction