previous | index | next

Binary Tree Traversals

Give the nodes of this tree in preorder: 4 2 1 3 6 5 7

Give the nodes of this tree in inorder: 1 2 3 4 5 6 7

Give the nodes of this tree in postorder: 1 3 2 5 7 6 4


previous | index | next