public BTNodeCount(BTNode node, int cnt) { this.node = node; count = cnt; }
public BinaryTree() { root = null; }
public BTNode(int value) { val = value; left = null; right = null; }