Skip to content

Instantly share code, notes, and snippets.

@goyuninfo
Last active December 31, 2015 16:59
Show Gist options
  • Save goyuninfo/8017007 to your computer and use it in GitHub Desktop.
Save goyuninfo/8017007 to your computer and use it in GitHub Desktop.
public class TreeNode {
Object val;
TreeNode left;
TreeNode right;
TreeNode(Object x) { val = x; }
public TreeNode leftNode() {return left;}
public TreeNode rightNode() {return right;}
public Object getNodeValue() {return val;}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment