Data structure: Implement Type safe, Generic, Double-ended Queue.

Today we will implement a Double-ended queue in Java. We will use generics so that our queue can work with any datatypes, like Integer, Double, String, Cars, Trucks, Cats, Dogs, etc... :)The source co...