set_union()的用法

// set_union example
#include <iostream> // std::cout
#include <algorithm> // std::set_union, std::sort
#include <vector> // std::vector

int main () {
  int first[] = {5,10,15,20,25};
  int second[] = {50,40,30,20,10};
  std::vector<int> v(10);                      // 0 0 0 0 0 0 0 0 0 0
  std::vector<int>::iterator it;

  std::sort (first,first+5);     // 5 10 15 20 25
  std::sort (second,second+5);   // 10 20 30 40 50

  it=std::set_union (first, first+5, second, second+5, v.begin());
                                               // 5 10 15 20 25 30 40 50 0 0
  v.resize(it-v.begin());                      // 5 10 15 20 25 30 40 50

  std::cout << "The union has " << (v.size()) << " elements:\n";
  for (it=v.begin(); it!=v.end(); ++it)
    std::cout << ' ' << *it;
  std::cout << '\n';

  return 0;

}

output

The union has 8 elements:
 5 10 15 20 25 30 40 50

来自http://www.cplusplus.com/reference/algorithm/set_union/?kw=set_union;

set_union可以对任意类型起作用。

返回值是最后一个插入的位置。

你可能感兴趣的:(set_union()的用法)