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