C++常用算术生成算法-fill()
功能描述:
- 向容器中填充指定的元素
#include <iostream>
#include <vector>
#include <numeric>
#include <algorithm>
using namespace std;
class myPrint
{
public:
void operator()(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();
return 0;
}
C++常用算术生成算法-fill()