Пример #1
0
 public LinkList()
 {
     head = null;
 }
Пример #2
0
 public node(Point data_, node next_)
 {
     data = data_;
     next = next_;
 }