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