在 C++ 语言 的 标准模板库 ( STL , STL Standard Template Library ) 中 , 提供了 accumulate 元素累加算法函数 用于 将 一个容器中的元素 进行累加操作 ;
accumulate 元素累加函数 将 输入容器 的 [ 起始迭代器, 终止迭代器 ) 范围 内的 元素 在一个基础值 的 基础上 进行累加 , 得到一个累加值 ;
最终 accumulate 函数 返回最终累加后的值 ;
accumulate 元素累加算法 函数原型 如下 :
template <class InputIterator, class T>
T accumulate(InputIterator first, InputIterator last, T init);
代码示例 :
// 输入容器
vector<int> source{ 9, 5, 2, 7 };
// 将容器中的值累加
int acc = accumulate(source.begin(), source.end(), 0);
代码示例 :
#include "iostream"
using namespace std;
#include <vector>
#include <algorithm>
#include "functional"
// accumulate 函数定义在这个头文件中
#include <numeric>
int main() {
// 输入容器
vector<int> source{ 9, 5, 2, 7 };
// 将容器中的值累加
int acc = accumulate(source.begin(), source.end(), 0);
// 遍历打印容器中元素内容
for_each(source.begin(), source.end(), [](int a) {
cout << a << " ";
});
cout << endl;
cout << "acc = " << acc << endl;
// 控制台暂停 , 按任意键继续向后执行
system("pause");
return 0;
};
执行结果 :
9 5 2 7 acc = 23 请按任意键继续. . .
在 C++ 语言 的 标准模板库 ( STL , STL Standard Template Library ) 中 , 提供了 fill 元素填充算法函数 用于 将 一个容器中的 指定范围的元素 修改为指定值 ;
fill 元素填充函数 将 输入容器 的 [ 起始迭代器, 终止迭代器 ) 范围 内的 元素 修改为指定值 ;
fill 元素填充算法 函数原型 如下 :
template <class ForwardIterator, class T>
void fill(ForwardIterator first, ForwardIterator last, const T& value);
代码示例 :
// 输入容器
vector<int> source{ 9, 5, 2, 7 };
// 将容器中的值都填充为 888
fill(source.begin(), source.end(), 888);
代码示例 :
#include "iostream"
using namespace std;
#include <vector>
#include <algorithm>
#include "functional"
// accumulate 函数定义在这个头文件中
#include <numeric>
int main() {
// 输入容器
vector<int> source{ 9, 5, 2, 7 };
// 遍历打印容器中元素内容
for_each(source.begin(), source.end(), [](int a) {
cout << a << " ";
});
cout << endl;
// 将容器中的值都填充为 888
fill(source.begin(), source.end(), 888);
// 遍历打印容器中元素内容
for_each(source.begin(), source.end(), [](int a) {
cout << a << " ";
});
cout << endl;
// 控制台暂停 , 按任意键继续向后执行
system("pause");
return 0;
};
执行结果 :
9 5 2 7 888 888 888 888 请按任意键继续. . .