#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.
first | Anfang des Bereiches |
last | Ende des Bereiches |
comp | Vergleichskriterium (Vorgabe = less ) |
proj | einstelliger Funktor (Vorgabe = std::identity ) |
pol | parallele Ausführungsart |
Rückgabewert: keiner bzw. last
.
#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; }