std::ranges::pop_heap
来自 cppreference.com
定义在头文件 <algorithm> 中 |
||
调用签名 |
||
template< std::random_access_iterator I, std::sentinel_for<I> S, class Comp = ranges::less, class Proj = std::identity > |
(1) | (自 C++20 起) |
template< ranges::random_access_range R, class Comp = ranges::less, class Proj = std::identity > |
(2) | (自 C++20 起) |
交换指定 堆 的第一个元素和最后一个元素(相对于 comp 和 proj),并将排除第一个位置的子范围转换为相对于 comp 和 proj 的堆。这将从指定的堆中移除第一个元素。
1) 指定的堆是
[
first,
last)
。2) 指定的堆是 r.
此页面上描述的函数式实体是 niebloids,即
在实践中,它们可以作为函数对象实现,或者使用特殊的编译器扩展实现。
内容 |
[编辑] 参数
首先,最后一个 | - | 指定要修改的元素范围的迭代器和哨兵 |
r | - | 要修改的元素范围 |
comp | - | 要应用于投影元素的比较器 |
proj | - | 要应用于元素的投影 |
[编辑] 返回值
1) last
2) ranges::end(r)
[编辑] 复杂度
最多 2log(N) 次 comp 应用和 4log(N) 次 proj 应用,其中 N 是
1) ranges::distance(first, last)
2) ranges::distance(r)
[编辑] 示例
运行此代码
#include <algorithm> #include <array> #include <iostream> #include <iterator> #include <string_view> template<class I = int*> void print(std::string_view rem, I first = {}, I last = {}, std::string_view term = "\n") { for (std::cout << rem; first != last; ++first) std::cout << *first << ' '; std::cout << term; } int main() { std::array v{3, 1, 4, 1, 5, 9, 2, 6, 5, 3}; print("initially, v: ", v.cbegin(), v.cend()); std::ranges::make_heap(v); print("make_heap, v: ", v.cbegin(), v.cend()); print("convert heap into sorted array:"); for (auto n {std::ssize(v)}; n >= 0; --n) { std::ranges::pop_heap(v.begin(), v.begin() + n); print("[ ", v.cbegin(), v.cbegin() + n, "] "); print("[ ", v.cbegin() + n, v.cend(), "]\n"); } }
输出
initially, v: 3 1 4 1 5 9 2 6 5 3 make_heap, v: 9 6 4 5 5 3 2 1 1 3 convert heap into sorted array: [ 6 5 4 3 5 3 2 1 1 9 ] [ ] [ 5 5 4 3 1 3 2 1 6 ] [ 9 ] [ 5 3 4 1 1 3 2 5 ] [ 6 9 ] [ 4 3 3 1 1 2 5 ] [ 5 6 9 ] [ 3 2 3 1 1 4 ] [ 5 5 6 9 ] [ 3 2 1 1 3 ] [ 4 5 5 6 9 ] [ 2 1 1 3 ] [ 3 4 5 5 6 9 ] [ 1 1 2 ] [ 3 3 4 5 5 6 9 ] [ 1 1 ] [ 2 3 3 4 5 5 6 9 ] [ 1 ] [ 1 2 3 3 4 5 5 6 9 ] [ ] [ 1 1 2 3 3 4 5 5 6 9 ]
[编辑] 参见
(C++20) |
将元素添加到最大堆中 (niebloid) |
(C++20) |
检查给定范围是否为最大堆 (niebloid) |
(C++20) |
查找作为最大堆的最大子范围 (niebloid) |
(C++20) |
从元素范围创建最大堆 (niebloid) |
(C++20) |
将最大堆转换为按升序排序的元素范围 (niebloid) |
从最大堆中删除最大元素 (函数模板) |