簡介
accumulate
//計(jì)算容器累計(jì)元素總和
fill
//向容器中添加元素
常用算是生成算法屬于小型算法,使用的時(shí)候包含頭文件<numeric>仍翰。
accumulate
函數(shù)原型
accumulate(iterator begin,iterator end, value);
計(jì)算區(qū)間內(nèi)容器元素總和
value表示起始值
void test01()
{
vector<int> v1;
for (int i = 0; i < 100; i++)
{
v1.push_back(i + 1);
}
int num = accumulate(v1.begin(), v1.end(), 0);
cout << "num = " << num << endl; //5050
}
file
函數(shù)原型
fill(iterator begin,iterator end,value);
向容器中填充指定元素
vlaue 表示填充的值
void print(int val)
{
cout << val << " ";
}
void test01()
{
vector<int> v1;
v1.resize(10);
fill(v1.begin(), v1.end(), 2); //用3填充
for_each(v1.begin(), v1.end(), print); // 2 2 2 2 2 2 2 2 2 2
}