C++ Algorithm generate_n()C++ Algorithm generate_n() function is used to assign the values which is generated by a function object to a specified number of elements in a range and returns to the one past the last assigned value position. The generator function is defined by the user and it is called successively for assigning the numbers. SyntaxParameterfirst: A forward iterator pointing the position of the first element in the range to which values are to be assigned. gen: A function object with no arguments that is used to generate the values to be assigned to each of the elements in the range. n: Number of elements to be assigned by generator function. It may be signed or unsigned integer type. Return valueNone ComplexityComplexity is linear in n. It calls gen and performs an assignment for each element. Data racesThe first n object in the range pointed by first are modified where each object is modified exactly once. Exception safetyThis function throws an exception if any of gen, element assignments or the operation on an iterator throws an exception. Please note that invalid parameters cause an undefined behavior. Example 1Let's see the simple example to demonstrate the use of generate_n(): Output: 1,2,4,8,16,32,64,128,256,512, Example 2Let's see another simple example: Output: Vector v1 is ( 1804289383 846930886 1681692777 0 0 ). Deque deq1 is ( 1714636915 1957747793 424238335 719885386 0 ). Example 3Let's see another simple example: Output: 1 2 3 4 5 6 7 8 9 10 Example 4Let's see another simple example: Output: myarray contains: 1 2 3 4 5 6 7 8 9 Next TopicC++ Algorithm |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India