vote up 4 vote down star
1

Hello fellow coders,

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

Any information would be greatly appreciated.

flag

It uses an explicit stack. What are you asking? How to push and pop from the stack? – S.Lott Aug 18 at 15:39
Two brand new tags for one question? – Bob Kaufman Aug 18 at 15:41
S.Lott? Did you read my question? Bob Kaufman: Yes – Patrik Aug 18 at 15:45
This is not a homework question. – Patrik Aug 18 at 15:47
@Patrik: Yes, I read the question. The algorithm is pretty obvious. That's why I asked what the real question was. – S.Lott Aug 18 at 20:26
show 2 more comments

1 Answer

vote up 5 vote down check

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|flag
Thank you for your help. – Patrik Aug 18 at 15:44

Your Answer

Get an OpenID
or

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