Question: 32
(Choose 1 answer)
Given a binary search tree T below. What is a result of breadth-first traverse of T after you delete by copying
the root (node 5)?
A. 2, 1, 4, 3, 6, 7, 8
B. 2, 1, 4, 3, 6, 8,7
C. 4, 2, 6, 1, 3, 8, 7
D. 4, 2, 6, 1, 3, 7, 8