Instructions: Implement the interface I provided for a Queue. A Queue is a conta
ID: 3697237 • Letter: I
Question
Instructions: Implement the interface I provided for a Queue. A Queue is a container to hold data where items are added at the end (enqueue) and removed from the front (dequeue). It is just line a line at the supermarket: first in- first out or first come-first served provided the interface code and a test driver class with main(). You are to write the Queue class, implementing all the methods specified in the interface and test it with the Driver. Also, open the driver and write the additional code I specify in the comments. You must document each method with the javadoc tags and inline comments> You must follow the conventions in naming fields, methods, class names and local variables. Use the example we did in lecture on Monday, April 18. This is very similar. The due date is Tuesday, May 3 by 11:55 pm, but I will allow you a day grace period.Explanation / Answer
Hi Please post Queue interface ?