All nodes to the left of root node must have value less than Root node
All nodes to the right of root node must have value greater than Root node
A node can only have up to 2 children
BST maintains the order/ relation of the elements

Uses

Implement Map and ADTs like AVL Trees, Splay Trees, Red Black Trees
Binary Heaps
Syntax Trees

Time Complexity

OperationAverageWorst
LookupO(log(n))O(n)
InsertO(log(n))O(n)
DeleteO(log(n))O(n)

O(n) : When the Tree in a Straight Line (Linked List)/ Unbalanced Tree
To get the log(n) time complexity the tree needs to be balanced

Tree Traversal

Preorder
Root Left Right

Inorder
Left Root Right
If performed on BST gives values in increasing order

Postorder
Left Right Root

Level Order
Perform BFS. Visit Element add Children to Queue