命名空间
变体
操作

std::is_heap_until

来自 cppreference.cn
< cpp‎ | algorithm
 
 
算法库
约束算法和范围算法 (C++20)
约束算法,例如 ranges::copy, ranges::sort, ...
执行策略 (C++17)
排序和相关操作
划分操作
排序操作
二分搜索操作
(在划分范围上)
集合操作(在已排序范围上)
归并操作(在已排序范围上)
堆操作
(C++11)
is_heap_until
(C++11)
最小值/最大值操作
(C++11)
(C++17)
字典序比较操作
排列操作
C 库
数值操作
未初始化内存上的操作
 
定义于头文件 <algorithm>
template< class RandomIt >
RandomIt is_heap_until( RandomIt first, RandomIt last );
(1) (since C++11)
(constexpr since C++20)
template< class ExecutionPolicy, class RandomIt >

RandomIt is_heap_until( ExecutionPolicy&& policy,

                        RandomIt first, RandomIt last );
(2) (since C++17)
template< class RandomIt, class Compare >
RandomIt is_heap_until( RandomIt first, RandomIt last, Compare comp );
(3) (since C++11)
(constexpr since C++20)
template< class ExecutionPolicy, class RandomIt, class Compare >

RandomIt is_heap_until( ExecutionPolicy&& policy,

                        RandomIt first, RandomIt last, Compare comp );
(4) (since C++17)

检查范围 [firstlast),并查找从 first 开始的、作为的最大范围。

1) 要检查的堆属性是关于 operator<(C++20 前)std::less{}(C++20 起) 的。
3) 要检查的堆属性是关于 comp 的。
2,4)(1,3) 相同,但根据 policy 执行。
只有当满足以下所有条件时,这些重载才会参与重载解析

std::is_execution_policy_v<std::decay_t<ExecutionPolicy>>true

(C++20 前)

std::is_execution_policy_v<std::remove_cvref_t<ExecutionPolicy>>true

(C++20 起)

内容

[编辑] 参数

first, last - 定义要检查的元素范围的迭代器对
policy - 要使用的执行策略
comp - 比较函数对象(即满足 Compare 要求的对象),如果第一个参数小于第二个参数,则返回 true

比较函数的签名应等效于以下形式

bool cmp(const Type1& a, const Type2& b);

虽然签名不需要具有 const&,但该函数不得修改传递给它的对象,并且必须能够接受类型(可能是 const)Type1Type2 的所有值,而与值类别无关(因此,不允许使用 Type1&,除非对于 Type1,移动等同于复制,除非对于 Type1,移动等同于复制(自 C++11 起))。
类型 Type1Type2 必须使得类型为 RandomIt 的对象可以被解引用,然后隐式转换为这两种类型。

类型要求
-
RandomIt 必须满足 LegacyRandomAccessIterator 的要求。
-
Compare 必须满足 Compare 的要求。

[编辑] 返回值

范围 [firstit) 是堆的最后一个迭代器 it

[编辑] 复杂度

给定 Nstd::distance(first, last)

1,2) 使用 operator<(C++20 前)std::less{}(C++20 起)O(N) 次比较。
3,4) 比较函数 compO(N) 次应用。

[编辑] 异常

具有名为 ExecutionPolicy 的模板参数的重载按如下方式报告错误

  • 如果作为算法一部分调用的函数的执行抛出异常,并且 ExecutionPolicy标准策略之一,则调用 std::terminate。对于任何其他 ExecutionPolicy,行为是实现定义的。
  • 如果算法无法分配内存,则抛出 std::bad_alloc

[编辑] 示例

#include <algorithm>
#include <iostream>
#include <vector>
 
int main()
{
    std::vector<int> v{3, 1, 4, 1, 5, 9};
 
    std::make_heap(v.begin(), v.end());
 
    // probably mess up the heap
    v.push_back(2);
    v.push_back(6);
 
    auto heap_end = std::is_heap_until(v.begin(), v.end());
 
    std::cout << "all of v:  ";
    for (const auto& i : v)
        std::cout << i << ' ';
    std::cout << '\n';
 
    std::cout << "only heap: ";
    for (auto i = v.begin(); i != heap_end; ++i)
        std::cout << *i << ' ';
    std::cout << '\n';
}

输出

all of v:  9 5 4 1 1 3 2 6
only heap: 9 5 4 1 1 3 2

[编辑] 参见

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