Пример #1
0
 public LLNode(int val = 0, LLNode next = null)
 {
     this.val  = val;
     this.next = next;
 }