/media/sda-magnetic/david/Extern-Magnetic-2022-06-29/Extern01/Dokumente-2020-11-16/disk10-ab-2020-01-10/02-debian-pc2-work/informatik/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) {
            
            }
        }
    }
}