Binary Search Tree (BST)The properties of BST For each node, the values of its left descendent nodes are less than that of the current node. For each node, the values of its right descendent nodes are more than that of the current node.