Пример #1
0
 public StackX()
 {
     this.top = null;
 }
Пример #2
0
 public QueueX()
 {
     this.XHead = this.XTail = null;
 }