我编写了这个函数来一次弹出并打印出 3 个学生,并一直这样做直到队列为空。由于某种原因,它仅在打印 3 个学生后停止。关于为什么的任何想法?Front 是指向我列表前面的指针,而 back 是指向后面的指针。该列表是非循环的。
void pop_front()
{
int num = 0;
string value;
while(front != NULL)
{
while(num<3)
{
Node *temp = front;
if(front->next)
{ value = front->name;
front = front->next;
front->prev = NULL;
size--;
delete temp;
cout<<value<<", ";
num++;
continue;
}
cout<<endl;
if(front->next == NULL)
{
value=front->name;
front = NULL;
back = NULL;
delete temp;
size--;
cout<<" The last student in this priority Queue list is: "<<value<<endl;
}
}
}
return;
}