算术生成算法头文件< numeric >
算法简介:
容器区间元素求和:accumulate
像容器中添加元素:fill
accumulate求和:
accumulate(const _InIt _First, const _InIt _Last, _Ty _Val)
形参:_First、_Last --元素区间
_Val --累加的起始值
重载版本:
accumulate(const _InIt _First, const _InIt _Last, _Ty _Val, _Fn _Reduce_op)
形参:_First、_Last --元素区间
_Val --起始值
_Reduce_op --运算规则(加、减、乘、除。。。)
#include < vector >
#include < iostream >
#include < numeric >
#include < functional >
using namespace std;
void test()
{
vector< int >vtr;
for (int i = 1; i <= 5; i++)
{
vtr.push_back(i);
}
auto sum=accumulate(vtr.begin(), vtr.end(), 0);
cout < < "sum=" < < sum < < endl;
sum=accumulate(vtr.begin(), vtr.end(), 1, multiplies< int >());
cout < < "sum=" < < sum < < endl;
}
int main()
{
test();
system("pause");
}
void fill(const _FwdIt _First, const _FwdIt _Last, const _Ty& _Val)
函数功能:容器填充
形参:_First、_Last --要填充的区间
_Val --要填充的值
#include < iostream >
#include < vector >
#include < numeric >
#include < algorithm >
using namespace std;
class Print
{
public:
void operator()(int val)
{
cout < < val < < " ";
}
};
void test()
{
vector< int >vtr;
vtr.resize(10);
fill(vtr.begin(), vtr.end(), 666);
for_each(vtr.begin(), vtr.end(), Print());
}
int main()
{
test();
system("pause");
return 0;
}
常用集合算法:--头文件< algorithm >
求交集(即两个容器相同元素部分):set_intersection()
求并集:set_union()
求差集:set_different()
求交集:
_OutIt set_intersection(_InIt1 _First1, _InIt1 _Last1, _InIt2 _First2, _InIt2 _Last2, _OutIt _Dest, _Pr _Pred)
_OutIt set_intersection(_First1, _Last1, _First2, _Last2, _Dest);
形参:_First1、_Last1 --容器1的区间范围
_First2、_Last2 --容器2的区间范围
_Dest --结果保存起始迭代器
_Pred --排序规则
返回值:返回结果的最后一个元素的下一个位置的迭代器(end)
注意:求交集必须保证元素有序,默认是从小到大
#include < iostream >
#include < vector >
#include < algorithm >
using namespace std;
class Print
{
public:
void operator()(int val)
{
cout < < val < < " ";
}
};
void test()
{
vector< int >t1 = { 1,2,3,4,5,6 };
vector< int >t2 = { 1,3,5,7,8,9 };
vector< int >t3;
//设置t3容器大小,min()为获取最小值
t3.resize(min(t1.size(), t2.size()));
vector< int >::iterator ret=set_intersection(t1.begin(), t1.end(), t2.begin(), t2.end(), t3.begin());
set_intersection()
cout < < "t1与t2的交集为:" < < endl;
for_each(t3.begin(), ret, Print());
cout < < endl;
}
int main()
{
test();
system("pause");
}
求并集:
set_union(_InIt1 _First1, _InIt1 _Last1, _InIt2 _First2, _InIt2 _Last2, _OutIt _Dest)
set_union(_ExPo&&, _FwdIt1 _First1, _FwdIt1 _Last1, _FwdIt2 _First2, _FwdIt2 _Last2, _FwdIt3 _Dest,_Pr _Pred)
形参:_First1、_Last1 --容器1的区间范围
_First2、_Last2 --容器2的区间范围
_Dest --结果保存起始迭代器
_Pred --排序规则
返回值:返回结果的最后一个元素的下一个位置的迭代器(end)
注意:求并集必须保证元素有序,默认是从小到大
#include < iostream >
#include < algorithm >
#include < vector >
using namespace std;
class print
{
public:
void operator()(int val)
{
cout < < val < < " ";
}
};
void test()
{
vector< int >v1 = { 1,3,4,6,8,9 };
vector< int >v2 = { 2,3,3,4,7,9,10 };
vector< int >v3;
v3.resize(v1.size() + v2.size());
vector< int >::iterator ret=set_union(v1.begin(), v1.end(), v2.begin(), v2.end(), v3.begin());
cout < < "v1与v2的并集:" < < endl;
for_each(v3.begin(), ret, print());
}
int main()
{
test();
system("pause");
}
求差集:set_difference()
_OutIt set_difference(_InIt1 _First1, _InIt1 _Last1, _InIt2 _First2, _InIt2 _Last2, _OutIt _Dest)
_OutIt set_difference(_InIt1 _First1, _InIt1 _Last1, _InIt2 _First2, _InIt2 _Last2, _OutIt _Dest, _Pr _Pred)
形参:_First1、_Last1 --容器1的区间范围
_First2、_Last2 --容器2的区间范围
_Dest --结果保存起始迭代器
_Pred --排序规则
返回值:返回结果的最后一个元素的下一个位置的迭代器(end)
注意:求差集必须保证元素有序,默认是从小到大
#include < iostream >
#include < algorithm >
#include < vector >
using namespace std;
class Print
{
public:
void operator()(int val)
{
cout < < val < < " ";
}
};
void test()
{
vector< int >t1 = { 1,3,5,6,7,9,10 };
vector< int >t2 = { 2,3,5,8,10 };
//t1与t2的补集:{1,6,7,9}; --除去和t2相同的元素
//t2与t1的补集:{2,8} --除去和t1相同的元素
vector< int >t3;
//t3分配空间
t3.resize(max(t2.size(), t1.size()));
auto ret = set_difference(t1.begin(), t1.end(), t2.begin(), t2.end(), t3.begin());
cout < < "t1与t2的补集:" < < endl;
for_each(t3.begin(), ret, Print());
cout < < endl;
ret = set_difference(t2.begin(), t2.end(), t1.begin(), t1.end(), t3.begin());
cout < < "t2与t1的补集:" < < endl;
for_each(t3.begin(), ret, Print());
cout < < endl;
}
int main()
{
test();
system("pause");
}
全部0条评论
快来发表一下你的评论吧 !