public void traverse( BinNode<E> root ){ if( root == null ){ return; } traverse( root.left() ); traverse( root.right() ); }Add calls to the {pre,in,post}OrderTraverse methods in your driver code and make sure that it matches what you came up with in the first part.
Last Modified: