Ejemplo n.º 1
0
 public void AddDoubleLinkedListToEnd(DoubleLinkedList insertList)
 {
     AddDoubleLinkedListByIndex(Length, insertList);
 }
Ejemplo n.º 2
0
 public void AddDoubleLinkedListByFirstIndex(DoubleLinkedList insertList)
 {
     AddDoubleLinkedListByIndex(0, insertList);
 }