Knowledge Base > Algorithm > Data Structure
Overview
Binary Search Tree is a binary tree data structure whose left subtree of a node contains only values less than the value of the node, and right subtree of a node contains only values greater than or equal to the value of the node.
Basic Operation
Algorithm
Pseudocode
|
|
|
|
Source Code
Here is the BST implementation, written in C:
Related Topics