目录
●accumulate
●fill
●set_intersection
●set_union
●set_difference
●accumulate
1.功能描述:
计算容器内元素累计总和
2.查看accumulate定义下底层代码的函数原型:
3.向vector容器中插入0~100,使用accumulate算法去计算其和并输出
#include<iostream>
#include<vector>
#include<numeric> //算数生成算法的头文件
using namespace std;
void text()
{
vector<int>v;
for (int i = 0; i <= 100; i++)
{
v.push_back(i);
}
int sum=accumulate(v.begin(), v.end(), 0);
cout << "sum=" << sum << endl;
}
int main()
{
text();
}
●fill
1.功能描述:
向容器内填充指定的元素值
2.查看fill定义下底层代码的函数原型:
3.创建一个vector容器,给其重新规定5个空间大小,向其里面填充10并且输出
#include<iostream>
#include<vector>
#include<algorithm>
#include<numeric> //算数生成算法的头文件
using namespace std;
void printvector(int value)
{
cout << value << " ";
}
void text()
{
vector<int>v;
v.resize(5);
fill(v.begin(), v.end(), 10);
for_each(v.begin(),v.end(),printvector);
}
int main()
{
text();
}
●set_intersection
1.功能描述:
求两个容器的交集(有序序列)
2.查看set_intersection定义下底层代码的函数原型:
3.创建容器1和容器2,分别向容器中插入1~10和5~14,使用set_intersection去求两容器的交集到指定容器中并且输出
#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
void printvector(int value)
{
cout << value << " ";
}
void text()
{
vector<int>v1;
vector<int>v2;
for (int i = 1, j = 1, k = 5; i <= 10; i++, j++, k++)
{
v1.push_back(j);
v2.push_back(k);
}
//创建目标容器
vector<int>v;
//给目标容器开辟空间(一种特殊情况,开辟空间为两集合容器的最小值)
v.resize(min(v1.size(), v2.size()));
//求交集
vector<int>::iterator p_end; //用迭代器去接受最后一个交集元素,在遍历输出时使用
p_end=set_intersection(v1.begin(), v1.end(), v2.begin(), v2.end(), v.begin());
for_each(v.begin(),p_end,printvector);
}
int main()
{
text();
}
●set_union
1.功能描述:
求两集合的并集(有序序列)
2.查看set_union定义下底层代码的函数原型:
3.创建容器1和容器2,分别向容器中插入1~10和5~14,使用set_union去求两容器的并集到指定容器中并且输出
#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
void printvector(int value)
{
cout << value << " ";
}
void text()
{
vector<int>v1;
vector<int>v2;
for (int i = 1, j = 1, k = 5; i <= 10; i++, j++, k++)
{
v1.push_back(j);
v2.push_back(k);
}
//创建目标容器
vector<int>v;
//给目标容器开辟空间(一种特殊情况,开辟空间为两集合容器空间的加和)
v.resize(v1.size()+v2.size());
//求并集
vector<int>::iterator p_end; //用迭代器去接受最后一个并集元素,在遍历输出时使用
p_end=set_union(v1.begin(), v1.end(), v2.begin(), v2.end(), v.begin());
for_each(v.begin(),p_end,printvector);
}
int main()
{
text();
}
●set_difference
1.功能描述:
求两个集合的差集
2.查看set_difference定义下底层代码的函数原型:
3.创建容器1和容器2,分别向容器中插入1~10和5~14,使用set_difference去分别求两容器v1-v2和v2-v1的差集到指定容器中并且输出
#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
void printvector(int value)
{
cout << value << " ";
}
void text()
{
vector<int>v1;
vector<int>v2;
for (int i = 1, j = 1, k = 5; i <= 10; i++, j++, k++)
{
v1.push_back(j);
v2.push_back(k);
}
cout << "容器1差集容器2:" << endl;
vector<int>v_;//创建目标容器
v_.resize(max(v1.size(),v2.size()));//给目标容器开辟空间(一种特殊情况,开辟空间为两集合容器的最大值)
vector<int>::iterator p_end_1; //,求差集用迭代器去接受最后一个差集元素,在遍历输出时使用
p_end_1=set_difference(v1.begin(), v1.end(), v2.begin(), v2.end(), v_.begin()); //v1-v2
for_each(v_.begin(),p_end_1,printvector);
cout << endl;
cout << "容器2差集容器1:" << endl;
vector<int>v__;
v__.resize(max(v1.size(), v2.size()));
vector<int>::iterator p_end_2;
p_end_2 = set_difference(v2.begin(), v2.end(), v1.begin(), v1.end(), v__.begin()); //v2-v1
for_each(v__.begin(), p_end_2, printvector);
}
int main()
{
text();
}