Ejemplo n.º 1
0
 public void Link(DoubleLinkedListNode row)
 {
     this.Right = row;
     row.Left   = this;
 }
Ejemplo n.º 2
0
 public DoubleLinkedListNode(int v)
 {
     this.value = v;
     this.left  = null;
     this.right = null;
 }