A Redblack tree is a special type of a binary search tree

Properties of Red Black Trees

  1. A red black tree is a binary tree where each node is colored, it has a few properties that make it different than a binary search Tree
  2. There are three rules the tree must adhere by, the root node is always colored black the path from the root node to any of the leaf nodes are always black, and a red node cannot have a red child.

Benefits of Red Black Tree

  1. Red black trees have more balance than red black trees, which decreases the time complexity for finding nodes
  2. This means that the red black tree has a search complexity of O(log(n)).
  3. The balancing factor is due to the unique properites of the red black tree, where insertions can cause rotations that balance the tree

Source: