public ArbolGeneral(T dato) { this.raiz = new NodoGeneral <T>(dato); }
private ArbolGeneral(NodoGeneral <T> nodo) { this.raiz = nodo; }