Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

As the subject states, I need to describe a method for evaluating a binary arithmetic expression tree without using recursion. No other details or instructions are given to me.

As far as my understanding of such things go, I need to simulate an inorder traversal of the tree. Assuming the availability of the ADT methods as outlined in my textbook, I have hasLeft(), hasRight(), left(), right(), isInternal(), and isExternal() methods. I need to ask my prof if I can make my own such method, but there's no parent() method to use so I can traverse back up the tree. Though, I do have a root() method.

Can somebody maybe point me in the right direction to figure out how to do this? I can't think of a way to do this without recursion, as I don't immediately have a way to jump back up the tree.

share|improve this question
3  
You should use a stack. – Eran Feb 23 at 18:04

1 Answer

You may keep a stack of the nodes that has already been visited. Then you replace the recursive invocations by pushing a new node into the stack, and you pop a node from the stack where the recursive function would have returned.

Remember that when executing a recursive function, there is always an implicit stack that remembers what parameters were passed in each function call.

share|improve this answer
I'll ask my prof if that's permissible. Thanks for the tip. – agent154 Feb 23 at 18:26
1  
the only other way I can think of is continuations, but this may be considered recursion, and it's probably not expected by your teacher anyway. – didierc Feb 23 at 21:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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