示例#1
0
 public DoublyLinkedList(T value)
 {
     head  = new DoublyLinkedListNode <T>(value);
     count = 0;
 }
示例#2
0
 public DoublyLinkedList()
 {
     head  = new DoublyLinkedListNode <T>();
     count = 0;
 }