edited by
7,408 views

8 Answers

5 votes
5 votes

The Constructed Binary Search Tree from the given Elements will be

Clearly, the element in the lowest level in the above BST is 67. So, Option B is True.

1 votes
1 votes
First elelment is root then insert elements as
1.smaller elements then node should be on Left Subtree of that node this is true for every node.
2.Larger elements then node should be on Right Subtree of that node this is true for every node.


Courtesy: GeekForGeeks
Insert(Root,key)
{
    if(Root is NULL)
        Create a Node with value as key and return
    Else if(Root.key >= key)
        Insert(Root.left,key)
    Else
        Insert(Root.right,key)
}

 

 

1 votes
1 votes

See the question carefully...

in the sequence shown, the element in the lowest level is..

 

I don’t know but why everybody is talking about last level even in the best answer. In the question it is saying about lowest level and in the given. It basically means asking about 1st level node.

here the level 1 or height 0 contains element is 67. which is our answer Option- B 

REF – What is the difference between tree depth and height?

 

 

Answer:

Related questions

32 votes
32 votes
4 answers
1
go_editor asked Feb 14, 2015
9,106 views
Consider the following array of elements.$\langle 89, 19, 50, 17, 12, 15, 2, 5, 7, 11, 6, 9, 100 \rangle$The minimum number of interchanges needed to convert it into a ma...
36 votes
36 votes
4 answers
2
go_editor asked Feb 14, 2015
9,336 views
Given that hash table $T$ with $25$ slots that stores $2000$ elements, the load factor $a$ for $T$ is _________.
25 votes
25 votes
3 answers
4