fill_n
特定の要素で始まるスコープの指定された数の要素に新しい値を割り当てます。
template<class OutputIterator, class Size, class Type>
void fill_n(
OutputIterator _First,
Size _Count,
const Type& _Val
);
パラメーター
_First
値を代入 _Val範囲の先頭の要素の位置を示す出力反復子。_Count
値が割り当てられている要素の数を指定する符号付きまたは符号なし整数の型。_Val
範囲 [_Firstの _First + _Count) 要素に割り当てる値。
解説
先の範囲は有効である必要があります; すべてのポインターが必要 dereferenceable 最後の位置は incrementation によって最初からアクセスできます。複雑度は、範囲のサイズと直線的です。
fill_n 2 に関連する二つの形式があります:
ついては、これらの関数がどのようにするか、チェックを行う反復子を参照してください。
使用例
// alg_fill_n.cpp
// compile with: /EHsc
#include <vector>
#include <algorithm>
#include <iostream>
int main() {
using namespace std;
vector <int> v1;
vector <int>::iterator Iter1;
int i;
for ( i = 0 ; i <= 9 ; i++ )
v1.push_back( 5 * i );
cout << "Vector v1 = ( " ;
for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ )
cout << *Iter1 << " ";
cout << ")" << endl;
// Fill the last 5 positions with a value of 2
fill_n( v1.begin( ) + 5, 5, 2 );
cout << "Modified v1 = ( " ;
for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ )
cout << *Iter1 << " ";
cout << ")" << endl;
}
出力
Vector v1 = ( 0 5 10 15 20 25 30 35 40 45 )
Modified v1 = ( 0 5 10 15 20 2 2 2 2 2 )
必要条件
ヘッダー: <algorithm>
名前空間: std