我编写这个函数是为了一次弹出并打印出3个学生,并一直这样做,直到队列为空。由于某种原因,它只打印了3个学生就停止了。有什么原因吗?前面是指向列表前面的指针,后面是指向后面的指针。该列表是非循环的。
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;
}
您需要在while(front != NULL)
循环内而不是在循环外将num
重置为0。