Exemplo n.º 1
0
 public LLNode(int data, LLNode next)
 {
     this.Data = data;
     this.Next = next;
 }