1 Star 0 Fork 1

llongger/Code_C++

forked from GodOuO/Code_C++ 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
96.set_union.cpp 901 Bytes
一键复制 编辑 原始数据 按行查看 历史
GodOuO 提交于 2023-03-15 04:09 . Train
#include<iostream>
#include<string>
#include<vector>
#include<algorithm>
using namespace std;
//常用集合算法 set_union
class printIntVector
{
public:
void operator()(int a){
cout<<a<<" ; ";
}
};
void test01(){
vector<int> v;
vector<int> v2;
vector<int> vTarget;
for (int i = 0; i < 100; i++)
{
v.push_back(i+1);
v2.push_back(i+6);
}
for_each(v.begin(),v.end(),printIntVector());
cout<<endl;
for_each(v2.begin(),v2.end(),printIntVector());
cout<<endl;
vTarget.resize(v.size()+v2.size()); //最特殊 两个容器没交集 空间开辟两个size和
vector<int>::iterator itEnd = set_union(v.begin(),v.end(),v2.begin(),v2.end(),vTarget.begin());
for_each(vTarget.begin(),itEnd,printIntVector()); //使用 itEnd!否则将全部空间输出(可能多0)
cout<<endl;
}
int main(){
test01();
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/llongger/codeCpp.git
[email protected]:llongger/codeCpp.git
llongger
codeCpp
Code_C++
master

搜索帮助