Exemplo n.º 1
0
 public SinglyLinkedList()
 {
     this.head = null;
     this.tail = null;
 }
Exemplo n.º 2
0
 public SinglyLinkedListNode(int nodeData)
 {
     this.data = nodeData;
     this.next = null;
 }