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