gpt4 book ai didi

c++ - 我如何在 C++ 中使用优先级队列?

转载 作者:太空宇宙 更新时间:2023-11-04 15:28:16 26 4
gpt4 key购买 nike

例如我们有priority_queue<int> s;其中包含一些元素。以下代码的正确形式是什么:

while (!s.empty()) {
int t=s.pop();// this does not retrieve the value from the queue
cout<<t<<endl;
}

最佳答案

请参阅您的文档,您会看到 pop 没有返回值。有various reasons for this ,但这是另一个话题。

正确的形式是:

while (!s.empty())
{
int t = s.top();
s.pop();

cout << t << endl;
}

或者:

for (; !s.empty(); s.pop())
{
cout << s.top(); << endl;
}

关于c++ - 我如何在 C++ 中使用优先级队列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3259741/

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