Constrained algorithms and algorithms on ranges(C++20) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Constrained algorithms, e.g.ranges::copy,ranges::sort, ... | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Execution policies(C++17) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Numeric operations | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Operations on uninitialized memory | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Defined in header <algorithm> | ||
template<class RandomIt> bool is_heap( RandomIt first, RandomIt last); | (1) | (since C++11) (constexpr since C++20) |
template<class ExecutionPolicy,class RandomIt> bool is_heap( ExecutionPolicy&& policy, | (2) | (since C++17) |
template<class RandomIt,class Compare> bool is_heap( RandomIt first, RandomIt last, Compare comp); | (3) | (since C++11) (constexpr since C++20) |
template<class ExecutionPolicy,class RandomIt,class Compare> bool is_heap( ExecutionPolicy&& policy, | (4) | (since C++17) |
Checks whether[
first,
last)
is aheap.
std::is_execution_policy_v<std::decay_t<ExecutionPolicy>> istrue. | (until C++20) |
std::is_execution_policy_v<std::remove_cvref_t<ExecutionPolicy>> istrue. | (since C++20) |
Contents |
first, last | - | the pair of iterators defining therange of elements to be checked |
policy | - | theexecution policy to use |
comp | - | comparison function object (i.e. an object that satisfies the requirements ofCompare) which returnstrue if the first argument isless than the second. The signature of the comparison function should be equivalent to the following: bool cmp(const Type1& a,const Type2& b); While the signature does not need to haveconst&, the function must not modify the objects passed to it and must be able to accept all values of type (possibly const) |
Type requirements | ||
-RandomIt must meet the requirements ofLegacyRandomAccessIterator. | ||
-Compare must meet the requirements ofCompare. |
true if the range is a heap with respect to the corresponding comparator,false otherwise.
Given\(\scriptsize N\)N asstd::distance(first, last):
The overloads with a template parameter namedExecutionPolicy
report errors as follows:
ExecutionPolicy
is one of thestandard policies,std::terminate is called. For any otherExecutionPolicy
, the behavior is implementation-defined.#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(constauto& 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};constauto& i: v)std::cout<< i<<(std::has_single_bit(++t)?" | ":" ");std::cout<<'\n';}
Output:
initially, v:3 1 4 1 5 9 2 6 5 3 5 8 9 7 9making heap...after make_heap, v:9 | 6 9 | 5 5 9 7 | 1 1 3 5 8 3 4 2 |
(C++11) | finds the largest subrange that is a max heap (function template)[edit] |
creates a max heap out of a range of elements (function template)[edit] | |
adds an element to a max heap (function template)[edit] | |
removes the largest element from a max heap (function template)[edit] | |
turns a max heap into a range of elements sorted in ascending order (function template)[edit] | |
(C++20) | checks if the given range is a max heap (algorithm function object)[edit] |