I have a problem that "queue management part3"my code is correct but output is "time out: the monitor dumped ur code"wttodonow | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

I have a problem that "queue management part3"my code is correct but output is "time out: the monitor dumped ur code"wttodonow

9th Jan 2022, 3:18 AM
Divyadeepika Kakollu
3 Answers
+ 1
Can you post the relevant parts of the code so we can take a look?
9th Jan 2022, 3:22 AM
Isho
Isho - avatar
+ 1
Thank you
10th Jan 2022, 1:34 AM
Divyadeepika Kakollu
0
It shouldn't loop forever. The limit is size, just like the original loop in the queue class that you should copy and modify this from. //your code goes here class Queue2: public Queue { public: void print() { if (size == 0) { cout << "Queue is empty"<<endl; return; } for (int i = 0; i < size; i++) cout<<queue[i]<<endl; } };
10th Jan 2022, 1:32 AM
Brian
Brian - avatar