kennen:lib:make_heap
Inhaltsverzeichnis
make_heap()
#include
<algorithm>
void make_heap (Ran first, Ran last) void make_heap (Ran first, Ran last, Binary comp) Ran ranges::make_heap (Range r, Binary comp = {}, proj = {}) Ran ranges::make_heap (Ran first, Ran last, Binary comp = {}, proj = {})
Ordnet den Bereich [first,last) zu einem Heap um.
Parameter
first | Anfang des Bereiches |
last | Ende des Bereiches |
comp | Vergleichskriterium (Vorgabe = less ) |
proj | einstelliger Funktor (Vorgabe = std::identity ) |
pol | parallele Ausführungsart |
Ergebnis
Rückgabewert: keiner bzw. last
.
Siehe auch
Beispiel
- make_heap.cpp
#include <algorithm> #include <iostream> #include <vector> int main() { std::vector<int> v = { 3, 7, 2, 0, 1, 9, 4, 6, 5, 8 }; std::make_heap(begin(v), end(v)); for(auto e : v) std::cout << e << " "; std::cout << '\n'; return 0; }
kennen/lib/make_heap.txt · Zuletzt geändert: 2020-06-16 17:17 von 127.0.0.1