示例#1
0
 public StackX()
 {
     this.top = null;
 }
示例#2
0
 public QueueX()
 {
     this.XHead = this.XTail = null;
 }