c++STL之常用算术生成算法
发布时间:2020-12-16 09:06:50 所属栏目:百科 来源:网络整理
导读:accumulate:计算容器元素累计总和 fill:向容器中添加元素 1.accumulate #includeiostream using namespace std;#include vector #include numeric // 常用算术生成算法 void test01(){ vector int v; for ( int i = 0 ; i = 100 ; i++ ) { v.push_back(i);
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 ; } 2.fill #include<iostream> #include <numeric> #include <algorithm> 常用算术生成算法 fill void myPrint( val) { cout << val << " ; } v; v.resize(10后期重新填充 fill(v.begin(),1)">100); for_each(v.begin(),myPrint); cout <<; } (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |