Exemplo n.º 1
0
 //Mover la raiz de lugar
 public void UnShift()
 {
     Root      = Root.Next;
     Root.Prev = null;
 }
Exemplo n.º 2
0
 public GenericNode(T val, GenericNode <T> node)
 {
     this.Val  = val;
     this.Next = node;
     node.Prev = this;
 }