up vote 15 down vote favorite
7
share [g+] share [fb]

Does anyone know the algorithm for doing a post order traversal of a binary tree WITHOUT using recursion.

Any information would be greatly appreciated.

link|improve this question

It uses an explicit stack. What are you asking? How to push and pop from the stack? – S.Lott Aug 18 '09 at 15:39
Two brand new tags for one question? – Bob Kaufman Aug 18 '09 at 15:41
S.Lott? Did you read my question? Bob Kaufman: Yes – Patrik Aug 18 '09 at 15:45
This is not a homework question. – Patrik Aug 18 '09 at 15:47
8  
S.Lott: OK. So you mean that there are no need for StackOverflow? I mean; everything must be obvious to someone, right? The algorithm was not obvious for me, so please don't be condensending. – Patrik Aug 19 '09 at 7:30
show 2 more comments
feedback

3 Answers

up vote 6 down vote accepted

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:

  1. The node is a leaf node (no children)
  2. We just traverse up the tree from the left and no right child exist.
  3. We just traverse up the tree from the right.
link|improve this answer
feedback

Here's a sample from wikipedia:

nonRecursivePostorder(rootNode)
  nodeStack.push(rootNode)
  while (! nodeStack.empty())
    currNode = nodeStack.peek()
    if ((currNode.left != null) and (currNode.left.visited == false))
      nodeStack.push(currNode.left)
    else 
      if ((currNode.right != null) and (currNode.right.visited == false))
        nodeStack.push(currNode.right)
      else
        print currNode.value
        currNode.visited := true
        nodeStack.pop()
link|improve this answer
Thank you for your help. – Patrik Aug 18 '09 at 15:44
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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.