Skip to content

Instantly share code, notes, and snippets.

@goyuninfo
Created December 18, 2013 04:01
Show Gist options
  • Save goyuninfo/8017086 to your computer and use it in GitHub Desktop.
Save goyuninfo/8017086 to your computer and use it in GitHub Desktop.
void preOrder (TreeNode root)
{
if(root == null) return;
root.getNodeValue();
preOrder( root.leftNode() );
preOrder( root.rightNode() );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment