Question: Problem 5 (12 marks) Define a class Queue which implements the abstract data type queue. As part of your definition of Queue , define the

 Problem 5 (12 marks) Define a class Queue which implements the

Problem 5 (12 marks) Define a class Queue which implements the abstract data type queue. As part of your definition of Queue , define the following methods: _init__(self) which creates an empty queue. enqueue (self, x) which adds x to the end of the queue. dequeue (self) which removes and returns the first (= oldest) element in the queue. _len_(self) which returns the total number of elements currently in the queue. You are free to define and use suitable instance variables to store the items in the queue. If the method dequeue is called for an empty queue, it should execute the statement raise IndexError In [ ]: class Queue: def _init__(self): # YOUR CODE HERE raise Not ImplementedError() def enqueue (self, x): # YOUR CODE HERE raise NotImplementedError() def dequeue (self): # YOUR CODE HERE raise NotImplementedError() def len_(self): # YOUR CODE HERE raise NotImplementedError()

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!