std::ranges:: is_heap_until
std::ranges
| Non-modifying sequence operations | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Modifying sequence operations | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Partitioning operations | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Sorting operations | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Binary search operations (on sorted ranges) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Set operations (on sorted ranges) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Heap operations | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Minimum/maximum operations | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Permutation operations | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Fold operations | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Operations on uninitialized storage | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Return types | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Definiert im Header
<algorithm>
|
||
|
Aufrufsignatur
|
||
|
template
<
std::
random_access_iterator
I,
std::
sentinel_for
<
I
>
S,
class
Proj
=
std::
identity
,
|
(1) | (seit C++20) |
|
template
<
ranges::
random_access_range
R,
class
Proj
=
std::
identity
,
std::
indirect_strict_weak_order
|
(2) | (seit C++20) |
Findet innerhalb des angegebenen Bereichs den längsten Bereich, der vom Anfang des angegebenen Bereichs ausgeht und einen Heap bezüglich comp und proj darstellt.
[
first
,
last
)
.
Die auf dieser Seite beschriebenen funktionsähnlichen Entitäten sind Algorithm Function Objects (informell bekannt als Niebloids ), das heißt:
- Explizite Template-Argumentlisten können beim Aufruf keiner von ihnen angegeben werden.
- Keiner von ihnen ist sichtbar für argument-dependent lookup .
- Wenn einer von ihnen durch normal unqualified lookup als Name links vom Funktionsaufrufoperator gefunden wird, wird argument-dependent lookup unterdrückt.
Inhaltsverzeichnis |
Parameter
| first, last | - | der Bereich der zu untersuchenden Elemente |
| r | - | der Bereich der zu untersuchenden Elemente |
| pred | - | Prädikat, das auf die projizierten Elemente angewendet wird |
| proj | - | Projektion, die auf die Elemente angewendet wird |
Rückgabewert
Der letzte Iterator iter im angegebenen Bereich, für den gilt:
[
first
,
iter
)
ist ein Heap bezüglich
comp
und
proj
.
Komplexität
\(\scriptsize O(N) \) O(N) Anwendungen von comp und proj , wobei \(\scriptsize N \) N ist:
Mögliche Implementierung
struct is_heap_until_fn { template<std::random_access_iterator I, std::sentinel_for<I> S, class Proj = std::identity, std::indirect_strict_weak_order <std::projected<I, Proj>> Comp = ranges::less> constexpr I operator()(I first, S last, Comp comp = {}, Proj proj = {}) const { std::iter_difference_t<I> n{ranges::distance(first, last)}, dad{0}, son{1}; for (; son != n; ++son) { if (std::invoke(comp, std::invoke(proj, *(first + dad)), std::invoke(proj, *(first + son)))) return first + son; else if ((son % 2) == 0) ++dad; } return first + n; } template<ranges::random_access_range R, class Proj = std::identity, std::indirect_strict_weak_order <std::projected<ranges::iterator_t<R>, Proj>> Comp = ranges::less> constexpr ranges::borrowed_iterator_t<R> operator()(R&& r, Comp comp = {}, Proj proj = {}) const { return (*this)(ranges::begin(r), ranges::end(r), std::move(comp), std::move(proj)); } }; inline constexpr is_heap_until_fn is_heap_until{}; |
Beispiel
Das Beispiel rendert einen gegebenen Vektor als einen (ausgeglichenen) Binärbaum .
#include <algorithm> #include <cmath> #include <iostream> #include <iterator> #include <vector> void out(const auto& what, int n = 1) { while (n-- > 0) std::cout << what; } void draw_bin_tree(auto first, auto last) { auto bails = [](int n, int w) { auto b = [](int w) { out("┌"), out("─", w), out("┴"), out("─", w), out("┐"); }; n /= 2; if (!n) return; for (out(' ', w); n-- > 0;) b(w), out(' ', w + w + 1); out('\n'); }; auto data = [](int n, int w, auto& first, auto last) { for (out(' ', w); n-- > 0 && first != last; ++first) out(*first), out(' ', w + w + 1); out('\n'); }; auto tier = [&](int t, int m, auto& first, auto last) { const int n{1 << t}; const int w{(1 << (m - t - 1)) - 1}; bails(n, w), data(n, w, first, last); }; const auto size{std::ranges::distance(first, last)}; const int m{static_cast<int>(std::ceil(std::log2(1 + size)))}; for (int i{}; i != m; ++i) tier(i, m, first, last); } int main() { std::vector<int> v{3, 1, 4, 1, 5, 9}; std::ranges::make_heap(v); // probably mess up the heap v.push_back(2); v.push_back(6); out("v after make_heap and push_back:\n"); draw_bin_tree(v.begin(), v.end()); out("the max-heap prefix of v:\n"); const auto heap_end = std::ranges::is_heap_until(v); draw_bin_tree(v.begin(), heap_end); }
Ausgabe:
v after make_heap and push_back:
9
┌───┴───┐
5 4
┌─┴─┐ ┌─┴─┐
1 1 3 2
┌┴┐ ┌┴┐ ┌┴┐ ┌┴┐
6
the max-heap prefix of v:
9
┌─┴─┐
5 4
┌┴┐ ┌┴┐
1 1 3 2
Siehe auch
|
(C++20)
|
prüft, ob der gegebene Bereich ein Max-Heap ist
(Algorithmus-Funktionsobjekt) |
|
(C++20)
|
erstellt einen Max-Heap aus einer Reihe von Elementen
(Algorithmus-Funktionsobjekt) |
|
(C++20)
|
fügt ein Element zu einem Max-Heap hinzu
(Algorithmus-Funktionsobjekt) |
|
(C++20)
|
entfernt das größte Element aus einem Max-Heap
(Algorithmus-Funktionsobjekt) |
|
(C++20)
|
wandelt einen Max-Heap in eine aufsteigend sortierte Elementreihe um
(Algorithmus-Funktionsobjekt) |
|
(C++11)
|
findet den größten Teilbereich, der ein Max-Heap ist
(Funktionstemplate) |