Deque is short for double-ended queues (deque is pronounced like deck, not like de-queue). A queue supports adding from one end and removing from the other. By comparison, double-ended queues support adding and removing from both ends -- it operates...