Subj : Re: Recursion in Java: Question for those who understand recursion well. To : comp.programming From : googmeister Date : Sun Aug 28 2005 08:52 am > Casey Hawthorne wrote: > > You are doing preorder traversal. CBFalconer wrote: > No he isn't. What he has shown is not a binary tree. Even if it > was, he would want an inorder traversal. Given the example tree, the OP does want a preorder traveral (with the usual convention that you visit the children from left to right), but not necessarily of a binary tree. .