STL学习3常用算法3.7常用算数生成算法

1、头文件  #include<numeric>

2、accumulate 

   2.1 计算容器元素累计总和

    2.2  第三个参数是起始累加的值

3、fill 

   3.1 填充算法

 4、测试程序

    

#include"pch.h"
#include<iostream>
#include<vector>
#include<numeric>//accumulate
#include<iterator>
using namespace std;

//accumulate 计算容器元素累计总和
void test01()
{
	vector<int>v1;
	for (int i = 1; i <=100; i++)
	{
		v1.push_back(i);
	}
	//第三个参数是起始累加的值
	int sum = accumulate(v1.begin(), v1.end(),0);
	cout << "sum= " << sum << endl;
}

//fill算法
void test02()
{
	vector<int>v2;
	v2.resize(10);
	cout << "befor fill: ";
	copy(v2.begin(), v2.end(), ostream_iterator<int>(cout, " "));
	cout << endl;
	fill(v2.begin(), v2.end(), 500);
	cout << "after fill: ";
	copy(v2.begin(), v2.end(), ostream_iterator<int>(cout, " "));
	cout << endl;
}

int main()
{
	//test01();
	test02();
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值