Jerry's Notes

Binary Search Tree

Word count: 44Reading time: 1 min
2022/02/03

Binary Search Tree (BST)

The properties of BST

  1. For each node, the values of its left descendent nodes are less than that of the current node.
  2. For each node, the values of its right descendent nodes are more than that of the current node.