links: Algorithms MOC
What is Binary Search Tree
Binary Search tree in a node based tree data structure which has the following properties
- The left sub tree of a node contains only nodes with keys lesser than the node’s key
- The right sub tree of a node contains only nodes with keys greater than the node’s key
- The left and right sub tree each must also be a binary search tree
tags: binarysearchtree
source: