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++ 中创建最小堆?
- 近似搜索的工作原理 2021-01-01
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- 使用/clr 时出现 LNK2022 错误 2022-01-01
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- 如何对自定义类的向量使用std::find()? 2022-11-07
- STL 中有 dereference_iterator 吗? 2022-01-01
- Stroustrup 的 Simple_window.h 2022-01-01
- 静态初始化顺序失败 2022-01-01
- 从python回调到c++的选项 2022-11-16
- C++ 协变模板 2021-01-01