Example #1
0
 public NodoL()
 {
     this.Info     = default(T);
     this.Sig      = null;
     this.Anterior = null;
 }
Example #2
0
 public void SetAnt(NodoL <T> anterior)
 {
     this.Anterior = anterior;
 }
Example #3
0
 public void SetSig(NodoL <T> nuevo)
 {
     this.Sig = nuevo;
 }
Example #4
0
 public NodoL(T info, NodoL <T> sig, NodoL <T> anterior)
 {
     this.Info     = info;
     this.Sig      = sig;
     this.Anterior = anterior;
 }
Example #5
0
 public NodoL(T info, NodoL <T> sig)
 {
     this.Info = info;
     this.Sig  = sig;
 }
Example #6
0
 public NodoL(T info)
 {
     this.Info     = info;
     this.Sig      = null;
     this.Anterior = null;
 }