Exemplo n.º 1
0
 // A SinglyLinkedList constructor.
 public SinglyLinkedList()
 {
     first = null;
 }
Exemplo n.º 2
0
 // Constructor.
 public SLLNode(string value)
 {
     Value = value;
     next  = null;
 }