Computer Science, asked by Saturnine, 1 month ago

Write a Python program to implement a stack and queue using a list data-
structure.
(pls don't spam, only answer if you are able to)

Answers

Answered by boypro015
4

Answer:

Queue using List

Enqueue: Adds an item to the queue. If the queue is full, then it is said to be an Overflow condition.

Dequeue: Removes an item from the queue. The items are popped in the same order in which they are pushed. ...

Front: Get the front item from the queue.

Rear: Get the last item from the queue.

Answered by ltzSweetAngel
2

Explanation:

Enqueue: Adds an item to the queue. If the queue is full, then it is said to be an Overflow condition.

Dequeue: Removes an item from the queue. The items are popped in the same order in which they are pushed. ...

Front: Get the front item from the queue.

Rear: Get the last item from the queue.

Similar questions