Пример #1
0
 public void setAnt(NodoBtree <T> cabeza)
 {
     anterio = cabeza;
 }
Пример #2
0
 public void setSig(NodoBtree <T> nuevo)
 {
     this.sig = nuevo;
 }
Пример #3
0
 public NodoBtree(T info, NodoBtree <T> sig)
 {
     this.info = info;
     this.sig  = sig;
 }
Пример #4
0
 public NodoBtree(T info, NodoBtree <T> sig, NodoBtree <T> ant)
 {
     this.info    = info;
     this.sig     = sig;
     this.anterio = ant;
 }
Пример #5
0
 public NodoBtree()
 {
     this.info    = default(T);
     this.sig     = null;
     this.anterio = null;
 }