Starting with the following binary search tree, draw a new tree representation after each (you should have 6 drawings) of the following method calls, which should be treated as cumulative.
tree.put(16); tree.put(25); tree.remove(9); tree.remove(21); tree.put(5); tree.remove(17)
1
9
19
33
10
18
20
27
35
4
8