I realized recently that while having used BST\'s plenty in my life, I\'ve never even contemplated using anything but Inorder traversal (while I am aware of and know how eas
If I wanted to simply print out the hierarchical format of the tree in a linear format, I'd probably use preorder traversal. For example:
- ROOT - A - B - C - D - E - F - G