Question: Queue using a circular array You need to implement a queue class using a circular array that stores strings. Your constructor for the queue
Queue using a circular array You need to implement a queue class using a circular array that stores strings. Your constructor for the queue should take the maximum queue size as an input with 50 as the default queue size. Your implementation should also have these functions as the minimum: a. A size function that returns the amount of strings inside the queue b. A dequeue function that removes and returns the first item on the queue c. An enqueue function that adds a sting to the queue d. A first function that just returns the item at the start of the queue e. A last functions that returns the last item on the queue f. A empty function that returns if the queue is empty or not g. A full function that returns if the queue is full or not Queue using a circular array You need to implement a queue class using a circular array that stores strings. Your constructor for the queue should take the maximum queue size as an input with 50 as the default queue size. Your implementation should also have these functions as the minimum: a. A size function that returns the amount of strings inside the queue b. A dequeue function that removes and returns the first item on the queue c. An enqueue function that adds a sting to the queue d. A first function that just returns the item at the start of the queue e. A last functions that returns the last item on the queue f. A empty function that returns if the queue is empty or not g. A full function that returns if the queue is full or not
Step by Step Solution
3.39 Rating (152 Votes )
There are 3 Steps involved in it
Heres a Python implementation of a circular queu... View full answer
Get step-by-step solutions from verified subject matter experts
