/media/sda-magnetic/david/Dok-15-2023-11-27/fernuni-hagen/cs-i-ii/old-cs-2-03/java-new/2020-11-12-01/ParamBinTree.java


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) {
            
            }
        }
    }
}