std::ranges::sort_heap
Min standard notice:
Header: <algorithm>
Sorts the elements in the specified range with respect to comp and proj, where the range originally represents a heap with respect to comp and proj. The sorted range no longer maintains the heap property.
# Declarations
Call signature
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 sort_heap( I first, S last, Comp comp = {}, Proj proj = {} );
(since 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>
sort_heap( R&& r, Comp comp = {}, Proj proj = {} );
(since C++20)
# Parameters
first, last: the iterator and sentinel designating the range of elements to modifyr: the range of elements to modifycomp: comparator to apply to the projected elementsproj: projection to apply to the elements
# Example
#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);
}