Question: d = Deque() //Create a deque object 'd' from Deque d.addRear(1) //add 1 to the rear d.addRear(2) //add 2 to the rear d.addFront(3) //add 3
d = Deque() //Create a deque object 'd' from Deque
d.addRear(1) //add 1 to the rear
d.addRear(2) //add 2 to the rear
d.addFront(3) //add 3 to the front
print(d.removeRear()) //remove an item from the rear, print it
print (d.removeFront()) //remove an item from the front, print it
The above operations can be preformed using a Python list without creating the Deque class. Write a Python script to produce the same output as the code segment above using the Deque class
hw4.py____________________________________________________________________________
// Create an empty queue
d = [ ]
// add 1 to the rear
d. append(1)
// add 2 to the rear
// add 3 to the front
// remove an item from the rear and print the value
// remove an item from the front and print the value
____________________________________________________________________________________
- Submit hw4,py
- Do not submit a zip.file
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
