std::is_heap
来自 cppreference.com
定义在头文件 <algorithm> 中 |
||
template< class RandomIt > bool is_heap( RandomIt first, RandomIt last ); |
(1) | (自 C++11 起) (自 C++20 起为 constexpr) |
template< class ExecutionPolicy, class RandomIt > bool is_heap( ExecutionPolicy&& policy, |
(2) | (自 C++17 起) |
template< class RandomIt, class Compare > bool is_heap( RandomIt first, RandomIt last, Compare comp ); |
(3) | (自 C++11 起) (自 C++20 起为 constexpr) |
template< class ExecutionPolicy, class RandomIt, class Compare > bool is_heap( ExecutionPolicy&& policy, |
(4) | (自 C++17 起) |
检查 [
first,
last)
是否为 堆.
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) |
类型要求 | ||
-RandomIt 必须满足 LegacyRandomAccessIterator 的要求。 | ||
-Compare 必须满足 Compare 的要求。 |
[编辑] 返回值
如果范围是相对于相应比较器的堆,则为 true,否则为 false。
[编辑] 复杂度
给定 N 作为 std::distance(first, last)
3,4) O(N) 比较函数 comp 的应用。
[edit] 异常
带有名为 ExecutionPolicy
的模板参数的重载报告错误如下:
- 如果作为算法的一部分调用的函数的执行抛出异常,并且
ExecutionPolicy
是 标准策略 之一,则调用 std::terminate。对于任何其他ExecutionPolicy
,行为是实现定义的。 - 如果算法无法分配内存,则抛出 std::bad_alloc。
[edit] 示例
运行此代码
#include <algorithm> #include <bit> #include <iostream> #include <vector> int main() { std::vector<int> v{3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5, 8, 9, 7, 9}; std::cout << "initially, v:\n"; for (const auto& i : v) std::cout << i << ' '; std::cout << '\n'; if (!std::is_heap(v.begin(), v.end())) { std::cout << "making heap...\n"; std::make_heap(v.begin(), v.end()); } std::cout << "after make_heap, v:\n"; for (auto t{1U}; const auto& i : v) std::cout << i << (std::has_single_bit(++t) ? " | " : " "); std::cout << '\n'; }
输出
initially, v: 3 1 4 1 5 9 2 6 5 3 5 8 9 7 9 making heap... after make_heap, v: 9 | 6 9 | 5 5 9 7 | 1 1 3 5 8 3 4 2 |
[edit] 另请参阅
(C++11) |
找到最大的子范围,该子范围是最大堆 (函数模板) |
从元素范围创建最大堆 (函数模板) | |
向最大堆添加元素 (函数模板) | |
从最大堆中删除最大元素 (函数模板) | |
将最大堆转换为按升序排序的元素范围 (函数模板) | |
(C++20) |
检查给定范围是否为最大堆 (niebloid) |