Last updated 6 years ago
Was this helpful?
A binary search tree is a tree with some requirements
The left child is <= the parent node
The right child is > the parent node
struct node { int data; struct node *leftChild; struct node *rightChild; }
Search
Insertion
Traversal (pre-order, in-order, post-order, level-order)