public class ParamBinTree <T> {
BinTree root;
ParamBinTree (T v) {
root = new BinTree (v);
}
void insert (T v) {
root.insert (v);
}
public class BinTree <T> {
BinTree l;
BinTree r;
T v;
BinTree (T v) {
this.v = v;
this.l = null;
this.r = null;
}
void insert (T v) {
if (v.compareTo (this.v) < 0) {
}
}
}
}