https://www.geeksforgeeks.org/check-whether-binary-tree-complete-not-set-
2-recursive-solution/
Question 9:-List the nodes of the tree below in preorder, postorder, and breadth-first
order
Answer :-
Preorder: L,K,A,J,B,C,I,H,E,D,F,G
Postorder: A,B,C,J,K,I,D,E,F,G,H,L.
Breadth-first: L,K,I,H,A,J,E,F,G,B,C,D
Question 10 :-In the binary search tree below, carry out the following operations in
sequence: Add 5, add 17, delete 23, delete 9.
Answer: There is more than one way to do the deletes, so the final answer is not
unique, but here is one: