Files
cppdraft_translate/cppdraft/sort/heap.md
2025-10-25 03:02:53 +03:00

3.5 KiB

[sort.heap]

26 Algorithms library [algorithms]

26.8.8 Heap operations [alg.heap.operations]

26.8.8.5 sort_heap [sort.heap]

🔗

`template constexpr void sort_heap(RandomAccessIterator first, RandomAccessIterator last);

template<class RandomAccessIterator, class Compare> constexpr void sort_heap(RandomAccessIterator first, RandomAccessIterator last, Compare comp);

template<random_access_iterator I, sentinel_for S, class Comp = ranges::less, class Proj = identity> requires sortable<I, Comp, Proj> constexpr I ranges::sort_heap(I first, S last, Comp comp = {}, Proj proj = {}); template<random_access_range R, class Comp = ranges::less, class Proj = identity> requires sortable<iterator_t, Comp, Proj> constexpr borrowed_iterator_t ranges::sort_heap(R&& r, Comp comp = {}, Proj proj = {}); `

1

#

Let comp be less{} and proj be identity{} for the overloads with no parameters by those names.

2

#

Preconditions: The range [first, last) is a valid heap with respect to comp and proj.

For the overloads in namespace std,RandomAccessIterator meets the Cpp17ValueSwappable requirements ([swappable.requirements]) and the type of *first meets the Cpp17MoveConstructible (Table 31) andCpp17MoveAssignable (Table 33) requirements.

3

#

Effects: Sorts elements in the heap [first, last) with respect to comp and proj.

4

#

Returns: last for the overloads in namespace ranges.

5

#

Complexity: At most 2NlogN comparisons, where N=last - first, and twice as many projections.