kennen:lib:sort_heap
Inhaltsverzeichnis
sort_heap()
#include
<algorithm>
void sort_heap (Ran first, Ran last) void sort_heap (Ran first, Ran last, Binary comp) Ran ranges::sort_heap (Range r, Binary comp = {}, proj = {}) Ran ranges::sort_heap (Ran first, Ran last, Binary comp = {}, proj = {})
Sortiert den als Heap vorgegebenen Bereich [first,last) aufsteigend.
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
- sort_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)); std::sort_heap(begin(v), end(v)); for(auto e : v) std::cout << e << " "; std::cout << '\n'; }
kennen/lib/sort_heap.txt · Zuletzt geändert: 2020-06-16 17:18 von 127.0.0.1