The fill() function in C++ STL is used to fill some default value in a container. The fill() function can also be used to fill values in a range in the container. It accepts two iterators begin and end and fills a value in the container starting from position pointed by begin and just before the position pointed by end.
Syntax:
CPP14
void fill(iterator begin, iterator end, type value);Parameters:
- begin: The function will start filling values from the position pointed by the iterator begin.
- end: The function will fill values upto the position just before the position pointed by the iterator end.
- value: This parameter denotes the value to be filled by the function in the container.
// C++ program to demonstrate working of fill()
#include <bits/stdc++.h>
using namespace std;
int main()
{
vector<int> 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] << " ";
// Filling the complete vector with value 10
fill(vect.begin(), vect.end(), 10);
cout << endl;
for (int i = 0; i < vect.size(); i++)
cout << vect[i] << " ";
return 0;
}
Output:
Reference: https://cplusplus.com/reference/algorithm/fill/0 0 4 4 4 4 4 0 10 10 10 10 10 10 10 10