public class GoodTree {
private class Node {
int element;
public Node lc, rc;
public Node(int key) {
this.element = key;
}
public String toString() {
return String.valueOf(element);
}
}
Node root;
public GoodTree() {root = null;}
public GoodTree (int e) {root = new Node(e);}
pubilc int size(){};
}