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