Concept Flow - Insertion in BST
Start at root
Compare new value with current node
Is new value < current node?
Yes→Go to left child
Is left child null?
Go to right child
Is right child null?
Repeat comparison
Insert new node here
Done
Start at the root and compare the new value with the current node. Move left if smaller, right if larger, until finding a null child where the new node is inserted.