Question: Provide a similar generic queue interface named Queue . Provide a linked generic queue named LinkedQueue that implements the interface Queue using the head-and-tail approach.

Provide a similar generic queue interface named Queue
Provide a linked generic queue named LinkedQueue
Write a JUnit test program QueueTest for your generic queue implementation. Make sure that you are using at least two parameter types (e.g. Integer and String) in your tests.
You are of course allowed to reuse your own non-generic queue implementation/test from Assignment 1.
public interface IntQueue extends Iterable
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
