Question: Can you please write a SINGLY LINKED LIST QUEUE in JAVA per below info? Write a queue class, using a singly linked-list, that allows your
Can you please write a SINGLY LINKED LIST QUEUE in JAVA per below info? 
Write a queue class, using a singly linked-list, that allows your queue to store type int. Your class should have the following methods: Method Name Return Type Description enque deque isEmpty isFull size none removes the element at the front of the queue and returns it generic inserts and element at the rear of the queue boolean returns true if the queue is empty, false otherwise boolean returns true if the queue is full, false otherwise int returns the number of elements in a queue In your test class, create a queue and exercise all the methods
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
