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;
}

猜你喜欢

转载自www.cnblogs.com/xiximayou/p/12114785.html