11:27 AM
A binary search tree is generated 2 points
by inserting in order the following
integers: How many in the left
child and right child 60, 15, 62, 5,
20, 68, 91, 3, 8, 77, 80, 24,71,95
(5,8)
(7,6)
(8,5)
(6, 7)
Construct a binary search tree
from the sequence EFBGCA Find
out the post-order traversal
ABEGCF
ADBFGC
ACBGFE
ABFCGE
What is the specialty about the
inorder traversal of a binary search
2 points
2 points