Esempio n. 1
0
 public StackX()
 {
     this.top = null;
 }
Esempio n. 2
0
 public QueueX()
 {
     this.XHead = this.XTail = null;
 }