Пример #1
0
 private void AddNode(ListNode nextListNode)
 {
     _nextNodeList = nextListNode;
     nextListNode._prevNodeList = this;
 }
Пример #2
0
 public void ReverseList()
 {
     _head = _head.Reverse();
 }
Пример #3
0
 public ListNode(int information)
 {
     Information   = information;
     _nextNodeList = null;
     _prevNodeList = null;
 }