Question: NEED HELP ASAP!!!! A deque is a data structure consisting of a list of items on which the following operations are possible: push(x): insert item
NEED HELP ASAP!!!!
A deque is a data structure consisting of a list of items on which the following operations are possible:
push(x): insert item x on the front end of the deque
pop(): Remove the front item from deque and return it
inject(x) : Insert item x on the rear end of the deque
eject(): Remove the rear item from deque and return it Write routines (in pseudo code) to support the deque that take O(1) time per operation
[Hint Use LinkedList of Java API it has removeLast(), removeFirst(), addFirst() and addLast() functions]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
