A binary search tree is a tree with some requirements
The left child is <= the parent node
The right child is > the parent node
Search
Insertion
Traversal (pre-order, in-order, post-order, level-order)
https://www.tutorialspoint.com/data\_structures\_algorithms/binary\_search\_tree.htmarrow-up-right
Last updated 6 years ago
struct node { int data; struct node *leftChild; struct node *rightChild; }