Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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 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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started