void setNodoSiguiente(NodoArbol _nodoSiguiente) { this.nodoSiguiente = _nodoSiguiente; }
public ArbolThompson() { this.inicio = null; this.ultimo = null; this.raiz = null; }
void setNodoAnterior(NodoArbol _nodoAnterior) { this.nodoAtnerior = _nodoAnterior; }