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
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment