public BSTNode(int inval) { val = inval; left = null; right = null; }
public BSTTree() { root = null; }