public Tree(Tree left, Tree right) { this.left = left; this.right = right; }
public Tree(char content, Tree left, Tree right) { this.content = content; this.left = left; this.right = right; }