目录
STL- 常用算法
概述:
-
算法主要是由头文件
<algorithm>
<functional>
<numeric>
组成。
-
<algorithm>
是所有STL头文件中最大的一个,范围涉及到比较、 交换、查找、遍历操作、复制、修改等等 -
<numeric>
体积很小,只包括几个在序列上面进行简单数学运算的模板函数 -
<functional>
定义了一些模板类,用以声明函数对象。
常用遍历算法
学习目标:
-
掌握常用的遍历算法
算法简介:
-
for_each
//遍历容器 -
transform
//搬运容器到另一个容器中
for_each
功能描述:
-
实现遍历容器
函数原型:
-
for_each(iterator beg, iterator end, _func);
// 遍历算法 遍历容器元素
// beg 开始迭代器
// end 结束迭代器
// _func 函数或者函数对象
示例:
#include <algorithm>
#include <vector>
//普通函数
void print01(int val)
{
cout << val << " ";
}
//函数对象
class print02
{
public:
void operator()(int val)
{
cout << val << " ";
}
};
//for_each算法基本用法
void test01() {
vector<int> v;
for (int i = 0; i < 10; i++)
{
v.push_back(i);
}
//遍历算法
for_each(v.begin(), v.end(), print01);
cout << endl;
for_each(v.begin(), v.end(), print02());
cout << endl;
}
int main() {
test01();
system("pause");
return 0;
}
输出:
0 1 2 3 4 5 6 7 8 9
0 1 2 3 4 5 6 7 8 9
for_each ( #include <algorithm> ) 源码:
_EXPORT_STD template <class _InIt, class _Fn>
_CONSTEXPR20 _Fn for_each(_InIt _First, _InIt _Last, _Fn _Func) { // perform function for each element [_First, _Last)
_Adl_verify_range(_First, _Last);
auto _UFirst = _Get_unwrapped(_First);
const auto _ULast = _Get_unwrapped(_Last);
for (; _UFirst != _ULast; ++_UFirst) {
_Func(*_UFirst);
}
return _Func;
}
本质上就是根据迭代器做for循环,利用提供的函数或则仿函数 ( _Func ) ,执行里面解引用出来的每一个数据。
总结:for_each在实际开发中是最常用遍历算法,需要熟练掌握
77 常用遍历算法-for_each_哔哩哔哩_bilibili
transform
功能描述:
-
搬运容器到另一个容器中
函数原型:
-
transform(iterator beg1, iterator end1, iterator beg2, _func);
//beg1 源容器开始迭代器
//end1 源容器结束迭代器
//beg2 目标容器开始迭代器
//_func 函数或者函数对象
示例:
#include<vector>
#include<algorithm>
//常用遍历算法 搬运 transform
class TransForm
{
public:
int operator()(int val)
{
return val;
}
};
class TransForm2
{
public:
int operator()(int val)
{
return val + 100;
}
};
class MyPrint
{
public:
void operator()(int val)
{
cout << val << " ";
}
};
void test01()
{
vector<int>v;
for (int i = 0; i < 10; i++)
{
v.push_back(i);
}
vector<int>vTarget; //目标容器
vTarget.resize(v.size()); // 目标容器需要提前开辟空间
transform(v.begin(), v.end(), vTarget.begin(), TransForm());
for_each(vTarget.begin(), vTarget.end(), MyPrint());
cout << endl;
transform(v.begin(), v.end(), vTarget.begin(), TransForm2());
for_each(vTarget.begin(), vTarget.end(), MyPrint());
}
int main() {
test01();
system("pause");
return 0;
}
输出:
0 1 2 3 4 5 6 7 8 9
100 101 102 103 104 105 106 107 108 109
总结: 搬运的目标容器必须要提前开辟空间,否则无法正常搬运
78 常用遍历算法-transform_哔哩哔哩_bilibili