c++STL之常用算术生成算法

时间:2022-07-24
本文章向大家介绍c++STL之常用算术生成算法,主要内容包括其使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

accumulate:计算容器元素累计总和

fill:向容器中添加元素

1.accumulate

#include<iostream>
using namespace std;
#include <vector>

#include <numeric>

//常用算术生成算法
void test01()
{
    vector<int>v;

    for (int i = 0; i <= 100; i++)
    {
        v.push_back(i);
    }
    //参数3  起始累加值
    int total = accumulate(v.begin(), v.end(), 0);

    cout << "total = " << total << endl;
}

int main() {

    test01();

    system("pause");

    return 0;
}

2.fill

#include<iostream>
using namespace std;
#include <vector>
#include <numeric>
#include <algorithm>


//常用算术生成算法 fill
void myPrint(int val)
{
    cout << val << " ";
}
void test01()
{
    vector<int>v;
    v.resize(10);

    //后期重新填充
    fill(v.begin(), v.end(), 100);
    for_each(v.begin(), v.end(), myPrint);

    cout << endl;
}

int main() {

    test01();

    system("pause");

    return 0;
}