Problem
1. Suppose you need to keep a collection of appointments. Would you use a linked list or an array list of Appointment objects?
2. Suppose you write a program that models a card deck. Cards are taken from the top of the deck and given out to players. As cards are returned to the deck, they are placed on the bottom of the deck. Would you store the cards in a stack or a queue?