Queue management 1 | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 5

Queue management 1

You are working on a Queue management system and need to create the class to hold the queue data, which are customer IDs (integers). You make a Queue class, which has a size attribute, and an array, to hold the data of the queue. The class has a remove() method to remove the front item of the queue, a print() method to output the queue. You need to create an add() method for the Queue class, that will take an item and add it to the end of the queue. The code needs to be fully working, so that the Queue declaration and manipulation code in main() works. The code is below please I need an explanation for it thanks

30th Oct 2021, 6:27 PM
Emmanuel Osemudiamen
Emmanuel Osemudiamen - avatar
2 Answers
+ 1
Guys since we have been allocated that memory for our arrays I think it's a good idea to deallocate it or what do you think?
25th Apr 2022, 8:26 AM
Silas Moracha
Silas Moracha - avatar
- 5
#include <iostream> using namespace std; class Queue { int size; int* queue; public: Queue() { size = 0; queue = new int[100]; } void remove() { if (size == 0) { cout << "Queue is empty"<<endl; return; } else { for (int i = 0; i < size - 1; i++) { queue[i] = queue[i + 1]; } size--; } } void print() { if (size == 0) { cout << "Queue is empty"<<endl; return; } for (int i = 0; i < size; i++) { cout<<queue[i]<<" <- "; } cout <<endl; } //your code goes here }; int main() { Queue q; q.add(42); q.add(2); q.add(8); q.add(1); q.print(); q.remove(); q.add(128); q.print(); q.remove(); q.remove(); q.print(); return 0; }
30th Oct 2021, 6:27 PM
Emmanuel Osemudiamen
Emmanuel Osemudiamen - avatar