예제 #1
0
 // A SinglyLinkedList constructor.
 public SinglyLinkedList()
 {
     first = null;
 }
예제 #2
0
 // Constructor.
 public SLLNode(string value)
 {
     Value = value;
     next  = null;
 }