Given the data set (8, 1, 6, 9, 3, 5, 4, 7) I drew the following binary search tree:
8
/ \
1 9
\
6
/ \
3 7
\
5
/
4
My question is, if I wanted to remove the root node (8) from this tree, how would I do it and what would the resulting tree-structure look like? Thank you very much for any help!