0
点赞
收藏
分享

微信扫一扫

【C++】常用算数生成算法

白衣蓝剑冰魄 2022-01-05 阅读 68

在这里插入图片描述
在这里插入图片描述

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

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

	for (int i = 0; i < 10; 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;
}
//总结:accumulate使用时头文件注意是numeric,这个算法很实用

在这里插入图片描述

#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;
}
//总结:利用fill可以将容器区间内元素填充为指定的值
举报

相关推荐

0 条评论