Question

Consider a Binary Search Tree (BS

  • T with the following values inserted in sequence: 45, 32, 50, 15, 40, 47, 60. What will be the in-order traversal of this BST after all insertions?
A 15, 32, 40, 45, 47, 50, 60
B 60, 50, 47, 45, 40, 32, 15
C 45, 32, 15, 40, 50, 47, 60
D 15, 40, 32, 45, 47, 50, 60
E 60, 47, 50, 45, 40, 32, 15
Practice Next

Relevant for Exams:

Hey! Ask a query