kennen:lib:set_difference
Inhaltsverzeichnis
set_difference()
#include
<algorithm>
Out set_difference (In first1, In last1, In2 first2, In2 last2, Out result) Out set_difference (In first1, In last1, In2 first2, In2 last2, Out result, Binary comp) Out set_difference (Exec pol, In first1, In last1, In2 first2, In2 last2, Out result) Out set_difference (Exec pol, In first1, In last1, In2 first2, In2 last2, Out result, Binary comp) [last1,res] = ranges::set_difference (Range1 r1, Range2 r2, Out result, Binary comp = {}, Proj1 proj1 = {}, Proj2 proj2 = {}) [last1,res] = ranges::set_difference (In first1, In last1, In2 first2, In2 last2, Out result, Binary comp = {}, Proj1 proj1 = {}, Proj2 proj2 = {})
Kopiert jene Elemente des sortierten Bereichs [first,last), die nicht in [first2,last2) vorkommen, sortiert in den Bereich [result,…).
Parameter
first | Anfang eines Bereiches |
last | Ende eines Bereiches |
first2 | Anfang des zweiten Bereiches |
last2 | Ende des zweiten Bereiches |
result | Anfang der Ergebnismenge |
comp | Vergleichskriterium (Vorgabe = less ) |
proj | einstelliger Funktor (Vorgabe = std::identity ) |
pol | parallele Ausführungsart |
Ergebnis
Rückgabewert: Ende der Ergebnismenge bzw. {last1,result_last}
als Struktur mit Elementen namens in, out
.
Siehe auch
Beispiel
- set_difference.cpp
#include <algorithm> #include <iterator> #include <iostream> int main() { double a[] = { 2, 4, 6, 8 }; double b[] = { 2, 3, 5, 7 }; std::set_difference(a, a+4, b, b+4, std::ostream_iterator<double>(std::cout, " ")); }
kennen/lib/set_difference.txt · Zuletzt geändert: 2023-10-14 12:22 von rrichter