Exemple #1
0
 void setNodoSiguiente(NodoArbol _nodoSiguiente)
 {
     this.nodoSiguiente = _nodoSiguiente;
 }
Exemple #2
0
 public ArbolThompson()
 {
     this.inicio = null;
     this.ultimo = null;
     this.raiz   = null;
 }
Exemple #3
0
 void setNodoAnterior(NodoArbol _nodoAnterior)
 {
     this.nodoAtnerior = _nodoAnterior;
 }