STL Heap
程序员文章站
2022-05-20 22:13:09
...
概述
♦STL 并没有把heap作为一种容器组件,它是实现优先队列的助手。它的实现是依靠vector表现的完全二叉树。
♦STL中默认是最大堆,但是用户利用自定义的compare_fuction函数实现最小堆。
♦heap是一个类属算法,在头文件#include< algorithm>中声明。
常见函数
make_heap
pop_heap
push_heap
sort_heap
测试代码
#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
int main()
{
int n;
cin >> n;
vector<int>v;
for (int i = 0; i < n; i++)
{
int num;
cin >> num;
v.push_back(num);
}
make_heap(v.begin(), v.end());
cout << "init max heap:" << v.front() << endl;
pop_heap(v.begin(), v.end());
v.pop_back();
cout << "max heap after pop:" << v.front() << endl;
v.push_back(999);
push_heap(v.begin(), v.end());
cout << "max heap after push:" << v.front() << endl;
sort_heap(v.begin(), v.end());
cout << "final sorted range:";
for (int i = 0; i < v.size(); i++)
{
cout << v[i] << " ";
}
cout << endl;
return 0;
}
测试结果
推荐阅读
-
VS2008无法直接查看STL值的解决方法
-
PHP排序算法之堆排序(Heap Sort)实例详解
-
图文详解Heap Sort堆排序算法及JavaScript的代码实现
-
Codeforces Round #595 (Div. 3)D1D2 贪心 STL
-
STL源码分析之第二级配置器
-
数据结构与算法(3)- C++ STL与java se中的vector
-
STL库学习笔记(一)——什么是STL?
-
android ddms heap内存分析工具使用步骤(监测内存)
-
Grow heap (frag case) 堆内存过大的深入解析
-
eclipse scala Could not reserve enough space for object heap