Exemplo n.º 1
0
 public DoublyLinkedList(T value)
 {
     head  = new DoublyLinkedListNode <T>(value);
     count = 0;
 }
Exemplo n.º 2
0
 public DoublyLinkedList()
 {
     head  = new DoublyLinkedListNode <T>();
     count = 0;
 }