Exemplo n.º 1
0
 public LinkedStack()
 {
     _list = new MyLinkedList <T>();
 }
Exemplo n.º 2
0
 public LinkedQueue()
 {
     _list = new MyLinkedList <T>();
 }