std::ranges::make_heap

来自cppreference.com
< cpp‎ | algorithm‎ | ranges
 
 
算法库
受约束算法及范围上的算法 (C++20)
包含算法例如 ranges::copy, ranges::sort, ...
执行策略 (C++17)
排序和相关操作
划分操作
排序操作
二分搜索操作(在已划分范围上)
集合操作(在有序范围上)
归并操作(在有序范围上)
堆操作
最小/最大操作
(C++11)
(C++17)
字典序比较操作
排列操作
C 库

数值运算
(C++11)                       
在未初始化内存上的操作
 
受约束算法
本菜单中的所有名字均属于命名空间 std::ranges
不修改序列的操作
修改序列的操作
划分操作
排序操作
二分搜索操作(在有序范围上)
       
       
集合操作(在有序范围上)
堆操作
make_heap
         
最小/最大操作
       
       
排列操作
折叠操作
数值操作
(C++23)            
未初始化存储上的操作
返回类型
 
在标头 <algorithm> 定义
调用签名
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 make_heap( I first, S last, Comp comp = {}, Proj proj = {} );
(1) (C++20 起)
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>

    make_heap( R&& r, Comp comp = {}, Proj proj = {} );
(2) (C++20 起)

从指定范围的所有元素构造关于 compproj

1) 指定的范围是 [firstlast)
2) 指定的范围是 r

此页面上描述的函数式实体是算法函数对象(非正式地称为 niebloid),即:

目录

[编辑] 参数

first, last - 要修改的元素范围的迭代器-哨位对
r - 要修改的元素 range
comp - 应用到投影后元素的比较器
proj - 应用到元素的投影

[编辑] 返回值

1) last

[编辑] 复杂度

最多应用 3·Ncomp6·Nproj,其中 N 是:

1) ranges::distance(first, last)

[编辑] 示例

#include <algorithm>
#include <cmath>
#include <functional>
#include <iostream>
#include <vector>
 
void out(const auto& what, int n = 1)
{
    while (n-- > 0)
        std::cout << what;
}
 
void print(auto rem, const auto& v)
{
    out(rem);
    for (auto e : v)
        out(e), out(' ');
    out('\n');
}
 
void draw_heap(const auto& v)
{
    auto bails = [](int n, int w)
    {
        auto b = [](int w) { out("┌"), out("─", w), out("┴"), out("─", w), out("┐"); };
        if (!(n /= 2))
            return;
        for (out(' ', w); n-- > 0;)
            b(w), out(' ', w + w + 1);
        out('\n');
    };
 
    auto data = [](int n, int w, auto& first, auto last)
    {
        for (out(' ', w); n-- > 0 && first != last; ++first)
            out(*first), out(' ', w + w + 1);
        out('\n');
    };
 
    auto tier = [&](int t, int m, auto& first, auto last)
    {
        const int n{1 << t};
        const int w{(1 << (m - t - 1)) - 1};
        bails(n, w), data(n, w, first, last);
    };
 
    const int m{static_cast<int>(std::ceil(std::log2(1 + v.size())))};
    auto first{v.cbegin()};
    for (int i{}; i != m; ++i)
        tier(i, m, first, v.cend());
}
 
int main()
{
    std::vector h{1, 6, 1, 8, 0, 3, 3, 9, 8, 8, 7, 4, 9, 8, 9};
    print("源:", h);
 
    std::ranges::make_heap(h);
    print("\n" "最大堆:", h);
    draw_heap(h);
 
    std::ranges::make_heap(h, std::greater{});
    print("\n" "最小堆:", h);
    draw_heap(h);
}

输出:

源:1 6 1 8 0 3 3 9 8 8 7 4 9 8 9
 
最大堆:9 8 9 8 8 4 9 6 1 0 7 1 3 8 3
       9
   ┌───┴───┐
   8       9
 ┌─┴─┐   ┌─┴─┐
 8   8   4   9
┌┴┐ ┌┴┐ ┌┴┐ ┌┴┐
6 1 0 7 1 3 8 3
 
最小堆:0 1 1 8 6 3 3 9 8 8 7 4 9 8 9
       0
   ┌───┴───┐
   1       1
 ┌─┴─┐   ┌─┴─┐
 8   6   3   3
┌┴┐ ┌┴┐ ┌┴┐ ┌┴┐
9 8 8 7 4 9 8 9

[编辑] 参阅

检查给定范围是否为最大堆
(算法函数对象) [编辑]
查找能成为最大堆的最大子范围
(算法函数对象) [编辑]
添加元素到最大堆
(算法函数对象) [编辑]
移除最大堆中最大元
(算法函数对象) [编辑]
将最大堆变成按升序排序的元素范围
(算法函数对象) [编辑]
从元素范围创建最大堆
(函数模板) [编辑]