Pages

Friday, October 29, 2010

Binary Trees

lets have a look at it :)

Binary Sort Trees

In a preorder traversal, the root node of the tree is processed first, then the left subtree is traversed, then the right subtree. In a postorder traversal, the left subtree is traversed, then the right subtree, and then the root node is processed. And in an inorder traversal, the left subtree is traversed first, then the root node is processed, then the right subtree is traversed

No comments: