📜  C++ STL中的fill()函数与示例

📅  最后修改于: 2021-05-30 09:15:56             🧑  作者: Mango

C++ STL中的fill()函数用于填充容器中的某些默认值。 fill()函数还可用于填充容器中某个范围内的值。它接受两个beginend迭代器,并从begin所指向的位置开始,并在end所指向的位置之前,在容器中填充一个值。

语法

void fill(iterator begin, iterator end, type value);

参数

  • begin :该函数将从迭代器begin指向的位置开始填充值。
  • end :该函数将值填充到迭代器结束所指向的位置之前的位置。
  • value :此参数表示该函数在容器中填充的值。

注意:请注意,“ begin”已包含在范围内,但“ end”未包含在内。

返回值:该函数不返回任何值。

下面的程序说明了C++ STL中的fill()函数:

// 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] << " ";
  
    // 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;
}
输出:
0 0 4 4 4 4 4 0 
10 10 10 10 10 10 10 10

参考:http://www.cplusplus.com/reference/algorithm/fill/

要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”