Is there an easy way to make a min heap in C++?(有没有一种简单的方法可以在 C++ 中创建最小堆?)
问题描述
我对 C++ 很陌生,我想知道是否有办法从标准库中使用 C++ 生成最小堆.
I'm very new to C++, and I was wondering if there was a way to make a min heap in C++ from the standard library.
推荐答案
使用make_heap()
和朋友,定义在中,或者使用
priority_queue
,定义在
中.priority_queue
使用 make_heap
和下面的朋友.
Use make_heap()
and friends, defined in <algorithm>
, or use priority_queue
, defined in <queue>
. The priority_queue
uses make_heap
and friends underneath.
#include <queue> // functional,iostream,ctime,cstdlib
using namespace std;
int main(int argc, char* argv[])
{
srand(time(0));
priority_queue<int,vector<int>,greater<int> > q;
for( int i = 0; i != 10; ++i ) q.push(rand()%10);
cout << "Min-heap, popped one by one: ";
while( ! q.empty() ) {
cout << q.top() << ' '; // 0 3 3 3 4 5 5 6 8 9
q.pop();
}
cout << endl;
return 0;
}
这篇关于有没有一种简单的方法可以在 C++ 中创建最小堆?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:有没有一种简单的方法可以在 C++ 中创建最小堆?
基础教程推荐
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01