namespace cpp {}

C++ lernen, kennen, anwenden

Benutzer-Werkzeuge

Webseiten-Werkzeuge


kennen:lib:set_union

set_union()

#include <algorithm>

Out set_union (In first1, In last1, In2 first2, In2 last2, Out result) 
Out set_union (In first1, In last1, In2 first2, In2 last2, Out result, Binary comp) 
Out set_union (Exec pol, In first1, In last1, In2 first2, In2 last2, Out result) 
Out set_union (Exec pol, In first1, In last1, In2 first2, In2 last2, Out result, Binary comp) 
 
[last1,last2,res] = ranges::set_union (Range1 r1, Range2 r2, Out result, 
                                       Binary comp = {}, Proj1 proj1 = {}, Proj2 proj2 = {}) 
[last1,last2,res] = ranges::set_union (In first1, In last1, In2 first2, In2 last2, Out result, 
                                       Binary comp = {}, Proj1 proj1 = {}, Proj2 proj2 = {}) 

Schreibt die Vereinigung der beiden sortierten Mengen [first,last) und [first2,last2) sortiert in den Bereich [result,…).

Ist ein Element in beiden Bereichen vorhanden, wird das aus dem ersten Bereich kopiert.

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,last2,result_last} als Struktur mit Elementen namens in1, in2, out.

Siehe auch

Beispiel

set_union.cpp
#include <algorithm>
#include <iterator>
#include <iostream>
 
int main()
{
  double a[] = { 2, 4, 6, 8 };
  double b[] = { 2, 3, 5, 7 };
 
  std::set_union(a, a+4, b, b+4, std::ostream_iterator<double>(std::cout, " "));
}
kennen/lib/set_union.txt · Zuletzt geändert: 2023-10-14 12:21 von rrichter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki