Introduction to Binary Search Tree (original) (raw)

Last Updated : 12 Dec, 2024

**Binary Search Tree is a data structure used in computer science for organizing and storing data in a sorted manner. Binary search tree follows all properties of binary tree and for every nodes, its **left subtree contains values less than the node and the **right subtree contains values greater than the node. This hierarchical structure allows for efficient **Searching, **Insertion, and **Deletion operations on the data stored in the tree.

Binary-Search-Tree

Binary Search Tree

Properties of Binary Search Tree:

Test Your Understanding

Given a Binary Tree, find out if it is Binary Search Tree or not.

Important Points about BST

**Next Articles:

Similar Reads