Binary Search Tree

A Binary Search Tree is a data structure made of nodes. Each node has two or less children. The tree follows a basic rule. Left nodes are smaller than their parent. Right nodes are larger. The time to access, search, insert, or delete a node is Linear. The space the tree uses is also linear.