Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

C++ program Class Attributes: queue - a pointer that stores the memory address for a dynamically allocated array of integers. front - stores the index

C++ program

Class Attributes:

queue - a pointer that stores the memory address for a dynamically allocated array of integers.

front - stores the index of the element that stores the value at the front of the queue.

rear - stores the index of the element where the next value will be added to the queue.

max - stores the the size of the array.

constructor - stores it's argument in max, dynamically allocates an array of max elements, and initializes front and rear to 0.

destructor - frees all memory used by the object.

enqueue - adds it's argument to the end of the queue. Returns 0 if successful, -1 otherwise. Will fail if the queue is full.

dequeue - removes the value at the front of the queue. Returns 0 if successful, -1 otherwise. Will fail if the queue is empty.

top - assigns the front value to it's reference parameter. Returns 0 if successful, -1 otherwise. Will fail if the queue is empty.

Submission Details:

Place your entire class in it's own header file named MyQueue.h. Remember to define your methods. Remember to include preprocessor gaurds.

Hints:

Write your own program to test your queue. Test it by enqueueing a bunch of numbers, and then dequeue them to make sure they come out in the right order.

On the final, you will be responsible for static and dynamic stacks and static and dynamic queues.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database And Expert Systems Applications 33rd International Conference Dexa 2022 Vienna Austria August 22 24 2022 Proceedings Part 1 Lncs 13426

Authors: Christine Strauss ,Alfredo Cuzzocrea ,Gabriele Kotsis ,A Min Tjoa ,Ismail Khalil

1st Edition

3031124227, 978-3031124228

More Books

Students also viewed these Databases questions

Question

26. How important is Green IT? Why?

Answered: 1 week ago