Vidyalelo
Data Structure · Q18

Binary Search Trees(B Tree)

Programming · Data Structure · question 18

Q18

How do you handle duplicate values in a Binary Search Tree (BST)?

A.
Usually, duplicates are not allowed.
B.
Duplicate values are stored in the right subtree.
Answer
C.
Duplicate values are stored in the left subtree.
D.
Duplicates are stored in a separate data structure.

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board