Process To insert node u If root node v is less than u, then If root node has a left child, then the root v is v.left Else, insert u at v’s left If root node v is more than u, then If root node has a right child, then the root v is v.right Else, insert u at v’s right