Example #1
0
 public GList()
 {
     head  = null;
     count = 0;
 }
Example #2
0
 public GNode(double d, GNode next)    // Конструктор
 {
     this.D    = d;
     this.Next = next;
 }
Example #3
0
 public GNode(string inf, GNode next)
 {
     this.inf   = inf;
     this.next  = next;
     this.count = 1;
 }