public LinkedStack() { myList = new MyLinkedList <T>(); }
public LinkedQueue() { myList = new MyLinkedList <T>(); }