std::generate es un algoritmo STL, que se usa para generar números basados en una función de generador y luego asigna esos valores a los elementos en el contenedor en el rango [primero, último].
La función generadora tiene que ser definida por el usuario, y se llama sucesivamente para asignar los números.
Ahora, puede haber un escenario, donde queramos asignar valores solo a los primeros n elementos, para eso tenemos otro algoritmo STL std::generate_n , que tiene la siguiente sintaxis:
Función de plantilla:
OutputIterator generate_n (OutputIterator first, Size n, Generator gen); first: Output iterator pointing to the beginning of the container. n: No. of elements to be assigned a value, using generator function. gen: A generator function for generating the values. Returns: It doesnot have a void return type like std::generate, but, in fact, it returns an iterator pointing to the element that follows the last element whose value has been generated.
// C++ program to demonstrate the use of std::generate_n #include <iostream> #include <vector> #include <algorithm> // Defining the generator function int gen() { static int i = 0; return ++i; } using namespace std; int main() { int i; // Declaring a vector of size 10 vector<int> v1(10); // using std::generate_n std::generate_n(v1.begin(), 10, gen); vector<int>::iterator i1; for (i1 = v1.begin(); i1 != v1.end(); ++i1) { cout << *i1 << " "; } return 0; }
Producción:
1 2 3 4 5 6 7 8 9 10
Este artículo es una contribución de Mrigendra Singh . Si le gusta GeeksforGeeks y le gustaría contribuir, también puede escribir un artículo usando contribuya.geeksforgeeks.org o envíe su artículo por correo a contribuya@geeksforgeeks.org. Vea su artículo que aparece en la página principal de GeeksforGeeks y ayude a otros Geeks.
Escriba comentarios si encuentra algo incorrecto o si desea compartir más información sobre el tema tratado anteriormente.
Publicación traducida automáticamente
Artículo escrito por GeeksforGeeks-1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA