gpt4 book ai didi

c++ - 处理由双链表组成的学生队列

转载 作者:行者123 更新时间:2023-11-28 00:47:27 25 4
gpt4 key购买 nike

我编写这个函数是为了一次弹出并打印出 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;
}

最佳答案

您需要在 while(front != NULL) 循环内将 num 重置为 0,而不是在循环外。

关于c++ - 处理由双链表组成的学生队列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15753993/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com