kennen:lib:partition
Inhaltsverzeichnis
partition()
#include
<algorithm>
For partition (For first, For last, Pred pred) For partition (Exec pol, For first, For last, Pred pred) Range range::partition (Range r, Pred pred, Proj proj = {}) Range range::partition (For first, For last, Pred pred, Proj proj = {})
Bringt alle Elemente des Bereiches [first,last),
auf die pred(x)
zutrifft nach links, alle anderen nach rechts.
Parameter
first | Anfang des Bereiches |
last | Ende des Bereiches |
pred | Prädikat |
proj | einstelliger Funktor (Vorgabe = std::identity ) |
pol | parallele Ausführungsart |
Ergebnis
Rückgabewert: Iterator i
bzw. {i,last}
auf das Ende des Teilbereiches,
auf dessen Elemente pred(x)
zutrifft.
Siehe auch
Beispiel
- partition.cpp
#include <algorithm> #include <iostream> #include <iomanip> #include <string> int main() { std::string s = "ein Beispiel"; std::cout << s << '\n'; auto q = std::partition(begin(s), end(s), [](char c) { return c < 'i'; )); std::cout << s << '\n' << std::setw(q-begin(s)+1) << "^" << " davor kleiner als i\n"; }
kennen/lib/partition.txt · Zuletzt geändert: 2020-06-16 16:49 von 127.0.0.1