Is there any way to implement a nonrecursive preorder traversal of a binary tree without using a stack? In a standalone function?<P>the recursive preorder looks like ...
Okay, I need to do an InOrder traversal on a Binary Search tree.<BR>The keys are inserted in the following order:<P><B>5, 2, 8, 4, 1, 6, 0, 7, 9, 3</B><P>This is how ...