示例#1
0
 public Stack()
 {
     linkList = new DoubleLinkList <T>();
 }
示例#2
0
 public Queue()
 {
     linkList = new DoubleLinkList <T>();
 }