Does anyone know the algorithm for doing a post order traversal of a binary tree WITHOUT using recursion.
Any information would be greatly appreciated.
|
Does anyone know the algorithm for doing a post order traversal of a binary tree WITHOUT using recursion. Any information would be greatly appreciated.
| |||||||||||||
feedback
|
|
Here's a link which provides two other solutions without using any visited flags. http://www.ihas1337code.com/2010/10/binary-tree-post-order-traversal.html This is obviously a stack-based solution due to the lack of parent pointer in the tree. (We wouldn't need a stack if there's parent pointer). We would push the root node to the stack first. While the stack is not empty, we keep pushing the left child of the node from top of stack. If the left child does not exist, we push its right child. If it's a leaf node, we process the node and pop it off the stack. We also use a variable to keep track of a previously-traversed node. The purpose is to determine if the traversal is descending/ascending the tree, and we can also know if it ascend from the left/right. If we ascend the tree from the left, we wouldn't want to push its left child again to the stack and should continue ascend down the tree if its right child exists. If we ascend the tree from the right, we should process it and pop it off the stack. We would process the node and pop it off the stack in these 3 cases:
| ||||
|
feedback
|
|
Here's a sample from wikipedia:
| |||
|
feedback
|
|
Algorithm: 1. Traverse LEFT until the left child is null and push the current node into stack. (This loop continues until the stack is empty) 2. Pop the stack and process the current node. 3. Go to the right child. You can find a working Java program at the below link. http://cslabprograms.blogspot.com/2011/02/non-recursive-tree-traversal-using.html | |||
|
feedback
|