std::ranges::sort_heap
来自 cppreference.cn
定义于头文件 <algorithm> |
||
调用签名 |
||
template< std::random_access_iterator I, std::sentinel_for<I> S, class Comp = ranges::less, class Proj = std::identity > |
(1) | (since C++20) |
template< ranges::random_access_range R, class Comp = ranges::less, class Proj = std::identity > |
(2) | (since C++20) |
排序 根据 comp 和 proj 对指定范围内的元素进行排序,其中该范围最初表示关于 comp 和 proj 的 堆。排序后的范围不再保持堆属性。
1) 指定的范围是
[
first,
last)
。2) 指定的范围是 r。
如果指定的范围不是关于 comp 和 proj 的堆,则行为未定义。
此页面上描述的类似函数的实体是 算法函数对象 (非正式地称为 niebloids),即
目录 |
[编辑] 参数
first, last | - | 定义要修改的元素 范围 的迭代器-哨位对 |
r | - | 要修改的元素 range |
comp | - | 应用于投影元素的比较器 |
proj | - | 应用于元素的投影 |
[编辑] 返回值
1) last
2) ranges::end(r)
[编辑] 复杂度
最多 2N⋅log(N) 次 comp 应用和 4N⋅log(N) 次 proj 应用,其中 N 是
1) ranges::distance(first, last)
2) ranges::distance(r)
[编辑] 可能的实现
struct sort_heap_fn { template<std::random_access_iterator I, std::sentinel_for<I> S, class Comp = ranges::less, class Proj = std::identity> requires std::sortable<I, Comp, Proj> constexpr I operator()(I first, S last, Comp comp = {}, Proj proj = {}) const { auto ret{ranges::next(first, last)}; for (; first != last; --last) ranges::pop_heap(first, last, comp, proj); return ret; } template<ranges::random_access_range R, class Comp = ranges::less, class Proj = std::identity> requires std::sortable<ranges::iterator_t<R>, Comp, Proj> constexpr ranges::borrowed_iterator_t<R> operator()(R&& r, Comp comp = {}, Proj proj = {}) const { return (*this)(ranges::begin(r), ranges::end(r), std::move(comp), std::move(proj)); } }; inline constexpr sort_heap_fn sort_heap{}; |
[编辑] 示例
运行此代码
#include <algorithm> #include <array> #include <iostream> void print(auto const& rem, const auto& v) { std::cout << rem; for (const auto i : v) std::cout << i << ' '; std::cout << '\n'; } int main() { std::array v{3, 1, 4, 1, 5, 9}; print("original array: ", v); std::ranges::make_heap(v); print("after make_heap: ", v); std::ranges::sort_heap(v); print("after sort_heap: ", v); }
输出
original array: 3 1 4 1 5 9 after make_heap: 9 5 4 1 1 3 after sort_heap: 1 1 3 4 5 9
[编辑] 参见
(C++20) |
检查给定范围是否为最大堆 (算法函数对象) |
(C++20) |
查找作为最大堆的最大子范围 (算法函数对象) |
(C++20) |
从元素范围创建最大堆 (算法函数对象) |
(C++20) |
从最大堆中移除最大元素 (算法函数对象) |
(C++20) |
向最大堆添加元素 (算法函数对象) |
将最大堆转换为按升序排序的元素范围 (函数模板) |