Skip to main content

Binary Search Tree

A **Binary Search Tree (BST)** is a type of binary tree where each node follows a specific ordering property: 1. All the values in the left subtree are less than the root node. 2. All the values in the right subtree are greater than the root node.