...
Nielit Scientist-B CS 22-07-2017
October 9, 2023
GATE 1987
October 9, 2023
Nielit Scientist-B CS 22-07-2017
October 9, 2023
GATE 1987
October 9, 2023

Data-Structures

Question 29

A binary search tree contains the value 1, 2, 3, 4, 5, 6, 7, 8. The tree is traversed in pre-order and the values are printed out. Which of the following sequences is a valid output?

A
5 3 1 2 4 7 8 6
B
5 3 1 2 6 4 8 7
C
5 3 2 4 1 6 7 8
D
5 3 1 2 4 7 6 8
Question 29 Explanation: 
Preorder traversal means (Root, left, right)
Option D:
Let draw binary search tree for the given sequence,

After traversing through this tree we will get same sequence.
Correct Answer: D
Question 29 Explanation: 
Preorder traversal means (Root, left, right)
Option D:
Let draw binary search tree for the given sequence,

After traversing through this tree we will get same sequence.

Leave a Reply

Your email address will not be published. Required fields are marked *