当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ fill用法及代码示例


"fill"函数将值“ val”分配给[begin,end)范围内的所有元素,其中“ begin”是初始位置,“ end”是最后位置。

注意:请注意,范围中包括“开始”,但不包括“结束”。以下是演示“填充”的示例:

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

0 0 4 4 4 4 4 0

我们还可以使用fill来填充数组中的值。

// C++ program to demonstrate working of fill() 
#include <bits/stdc++.h> 
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 <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    list<int> ml = { 10, 20, 30 }; 
  
    fill(ml.begin(), ml.end(), 4); 
  
    for (int x:ml) 
        cout << x << " "; 
  
    return 0; 
}
输出:
4 4 4



相关用法


注:本文由纯净天空筛选整理自kartik大神的英文原创作品 fill in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。