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

发布于 2024-09-10 06:15:43 字数 228 浏览 8 评论 0原文

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

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

For example we have priority_queue<int> s; which contains some elements. What will be correct form of the following code:

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

野稚 2024-09-17 06:15:43

请参阅您的文档,您将看到 pop 没有返回值。 造成这种情况的原因有很多,但那是另一个话题了。

正确的形式是:

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

    cout << t << endl;
}

或者:

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

Refer to your documentation and you'll see pop has no return value. There are various reasons for this, but that's another topic.

The proper form is:

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

    cout << t << endl;
}

Or:

for (; !s.empty(); s.pop())
{
    cout << s.top(); << endl;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文