34 34 votes While inserting the elements $71, 65, 84, 69, 67, 83$ in an empty binary search tree (BST) in the sequence shown, the element in the lowest level is $65$ $67$ $69$ $83$ Data Structures gatecse-2015-set3 data-structures binary-search-tree easy + – go_editor 12.7k views answer comment Share Follow Print See all 3 Comments 3 3 Comments reply vxi lin commented Oct 1, 2025 reply Follow flag did it right being easy, I was trying to find a way to do such questions by making sense of if they are the smallest or they are the largest but that is very wrong way of doing such questions (self note ) 0 0 replyShare js__ commented Jan 15 reply Follow flag Lowest level must be root at level 0, why considering in reverse 0 0 replyShare vxi lin commented Jan 15 reply Follow flag @js__ by lowest element here they meant lowest position can also be said as element farthest from the root I think they want to convey the position-wise lowest not numeric lowest 0 0 replyShare Please log in or register to add a comment.
Best answer 43 43 votes On last level $67$, hence option $B$ is True. Bran Stark answered Feb 27, 2015 • edited Jun 13, 2018 by Milicevic3306 Bran Stark comment Share Follow 0 reply Please log in or register to add a comment.
14 14 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. SarathBaswa answered Jul 4, 2020 SarathBaswa comment Share Follow 0 reply Please log in or register to add a comment.
12 12 votes option B.... 67 because it is on level 3 and 83 is on level2 Anoop Sonkar answered Feb 14, 2015 Anoop Sonkar comment Share Follow 0 reply Please log in or register to add a comment.
7 7 votes B. 67 is true. Element 67 will be on level 3 i.e., last level of this tree. vishalgarg837 answered Nov 24, 2015 vishalgarg837 comment Share Follow 0 reply Please log in or register to add a comment.
5 5 votes B. 67 (At Level 3) rpdhakad answered Jul 13, 2015 rpdhakad comment Share Follow 0 reply Please log in or register to add a comment.
2 2 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) } Musa answered Aug 18, 2020 Musa comment Share Follow 0 reply Please log in or register to add a comment.