If elements are inserted into an empty binary search tree (BST) in that sequence, what is the element in the lowest level?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
remember => node.left < node.data < node.right
now, start drawing tree-->
4 : 4rth value 69 --> correct place is right node of 64 (tricky part to understand)
5 : 68 goes to left node of 69, (we can't put it in the left of 64)