Exemplo n.º 1
0
 private void AddNode(ListNode nextListNode)
 {
     _nextNodeList = nextListNode;
     nextListNode._prevNodeList = this;
 }
Exemplo n.º 2
0
 public void ReverseList()
 {
     _head = _head.Reverse();
 }
Exemplo n.º 3
0
 public ListNode(int information)
 {
     Information   = information;
     _nextNodeList = null;
     _prevNodeList = null;
 }