Binary Search Tree (BST)

Overview

A Binary Search Tree is a hierarchical data structure that stores elements in a way that allows efficient searching, insertion, and deletion. Each node has at most two children: a left child and a right child.

Key Properties

Learn more at Binary Search Tree – Wikipedia .