...

/

Binary Search Tree Insertion

Binary Search Tree Insertion

In this lesson, we'll study the binary search tree insertion algorithm!

Binary Search Tree Insertion Algorithm

Here is a description of the algorithm you’d use to insert a new value into a BST.

  1. Start from the root node

  2. Check if the value to be inserted is greater than the ...