// Use a DList as the underlying data structure. Queue queue = new Queue( new DList() ); queue.push( "bat" ); queue.push( "cat" ); queue.push( "dog" ); System.out.println( "Print the queue." ); System.out.println( queue );