0
38kviews
Construct Binary search tree for the following element. 47,12,75,88,90,73,57,1,85,50,62
1 Answer
4
7.0kviews


Binary Search Tree (BST) for the following sequence of numbers-

47, 12, 75, 88, 90, 73, 57, 1, 85, 50, 62

Always consider the first element as the root node. Consider the given elements and insert them in the BST one by one.


Step 1. Insert 47

enter image description here

Step 2. Insert …

Create a free account to keep reading this post.

and 2 others joined a min ago.

Please log in to add an answer.