“填充”函数将值“ val”分配给[begin,end)范围内的所有元素,其中“ begin”是初始位置,“ end”是最后位置。
注意:请注意,“ begin”已包含在范围内,但“ end”未包含在内。以下是演示“填充”的示例:
// C++ program to demonstrate working of fill()
#include
using namespace std;
int main()
{
vector vect(8);
// calling fill to initialize values in the
// range to 4
fill(vect.begin() + 2, vect.end() - 1, 4);
for (int i = 0; i < vect.size(); i++)
cout << vect[i] << " ";
return 0;
}
输出:
0 0 4 4 4 4 4 0
我们还可以使用fill来填充数组中的值。
// C++ program to demonstrate working of fill()
#include
using namespace std;
int main()
{
int arr[10];
// calling fill to initialize values in the
// range to 4
fill(arr, arr + 10, 4);
for (int i = 0; i < 10; i++)
cout << arr[i] << " ";
return 0;
}
输出:
4 4 4 4 4 4 4 4 4 4
C++中的填充列表。
// C++ program to demonstrate working of fill()
#include
using namespace std;
int main()
{
list ml = { 10, 20, 30 };
fill(ml.begin(), ml.end(), 4);
for (int x : ml)
cout << x << " ";
return 0;
}
输出:
4 4 4
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。