當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。