Write a code to create a generic data structure called deque which consists of a list of items. The following operations are performed in deque: a. push(x): Insert item x on the front of the deque. b. pop(): Remove and return the item at the front of the deque. c. is_empty(): Check if the deque is empty. d. size(): Return the number of items in the deque. Write the code for these operations.

Answer :

Other Questions