Exemplo n.º 1
0
 public Stack()
 {
     linkList = new DoubleLinkList <T>();
 }
Exemplo n.º 2
0
 public Queue()
 {
     linkList = new DoubleLinkList <T>();
 }