Namespaces
Variants

std::ranges:: fill_n

From cppreference.net
Algorithm library
Constrained algorithms and algorithms on ranges (C++20)
Constrained algorithms, e.g. ranges::copy , ranges::sort , ...
Execution policies (C++17)
Non-modifying sequence operations
Batch operations
(C++17)
Search operations
Modifying sequence operations
Copy operations
(C++11)
(C++11)
Swap operations
Transformation operations
Generation operations
Removing operations
Order-changing operations
(until C++17) (C++11)
(C++20) (C++20)
Sampling operations
(C++17)

Sorting and related operations
Partitioning operations
Sorting operations
Binary search operations
(on partitioned ranges)
Set operations (on sorted ranges)
Merge operations (on sorted ranges)
Heap operations
Minimum/maximum operations
Lexicographical comparison operations
Permutation operations
C library
Numeric operations
Operations on uninitialized memory
Constrained algorithms
All names in this menu belong to namespace std::ranges
Non-modifying sequence operations
Modifying sequence operations
Partitioning operations
Sorting operations
Binary search operations (on sorted ranges)
Set operations (on sorted ranges)
Heap operations
Minimum/maximum operations
Permutation operations
Fold operations
Operations on uninitialized storage
Return types
Défini dans l'en-tête <algorithm>
Signature d'appel
template < class T, std:: output_iterator < const T & > O >
constexpr O fill_n ( O first, std:: iter_difference_t < O > n, const T & value ) ;
(depuis C++20)
(jusqu'à C++26)
template < class O, class T = std:: iter_value_t < O > >

requires std:: output_iterator < O, const T & >

constexpr O fill_n ( O first, std:: iter_difference_t < O > n, const T & value ) ;
(depuis C++26)

Assigne la value donnée à tous les éléments dans la plage [ first , first + n ) .

Les entités de type fonction décrites sur cette page sont des algorithm function objects (communément appelés niebloids ), c'est-à-dire :

Table des matières

Paramètres

first - début de la plage d'éléments à modifier
n - nombre d'éléments à modifier
value - valeur à assigner

Valeur de retour

Un itérateur de sortie qui compare égal à first + n .

Complexité

Exactement n affectations.

Implémentation possible

struct fill_n_fn
{
    template<class O, class T = std::iter_value_t<O>>
    requires std::output_iterator<O, const T&>
    constexpr O operator()(O first, std::iter_difference_t<O> n, const T& value) const
    {
        for (std::iter_difference_t<O> i {}; i != n; ++first, ++i)
            *first = value;
        return first;
    }
};
inline constexpr fill_n_fn fill_n {};

Notes

Macro de test de fonctionnalité Valeur Std Fonctionnalité
__cpp_lib_algorithm_default_value_type 202403 (C++26) Initialisation par liste pour les algorithmes

Exemple

#include <algorithm>
#include <complex>
#include <iostream>
#include <string>
#include <vector>
void println(const auto& v)
{
    for (const auto& elem : v)
        std::cout << ' ' << elem;
    std::cout << '\n';
}
int main()
{
    constexpr auto n{8};
    std::vector<std::string> v(n, "▓▓░░");
    println(v);
    std::ranges::fill_n(v.begin(), n, "░░▓▓");
    println(v);
    std::vector<std::complex<double>> nums{{1, 3}, {2, 2}, {4, 8}};
    println(nums);
    #ifdef __cpp_lib_algorithm_default_value_type
        std::ranges::fill_n(nums.begin(), 2, {4, 2});
    #else
        std::ranges::fill_n(nums.begin(), 2, std::complex<double>{4, 2});
    #endif
    println(nums);
}

Sortie :

 ▓▓░░ ▓▓░░ ▓▓░░ ▓▓░░ ▓▓░░ ▓▓░░ ▓▓░░ ▓▓░░
 ░░▓▓ ░░▓▓ ░░▓▓ ░░▓▓ ░░▓▓ ░░▓▓ ░░▓▓ ░░▓▓
 (1,3) (2,2) (4,8)
 (4,2) (4,2) (4,8)

Voir aussi

assigne une valeur à une plage d'éléments
(objet fonction algorithme)
copie un nombre d'éléments vers un nouvel emplacement
(objet fonction algorithme)
sauvegarde le résultat d'une fonction dans une plage
(objet fonction algorithme)
applique une fonction à une plage d'éléments
(objet fonction algorithme)
remplit une plage avec des nombres aléatoires d'un générateur de bits aléatoire uniforme
(objet fonction algorithme)
assigne par copie la valeur donnée à N éléments dans une plage
(modèle de fonction)