Interview Questions

How do you traverse a Btree in Backward in-order?

C++ Interview Questions and Answers


(Continued from previous question...)

32. How do you traverse a Btree in Backward in-order?

Process the node in the right subtree
Process the root
Process the node in the left subtree

(Continued on next question...)

Other Interview Questions