C++ Algorithm Function copy()C++ Algorithm copy() function is used to copy all the elements of the container [first,last] into a different container starting from result. SyntaxParameterfirst: It is an input iterator to the first element of the range, where the element itself is included in the range. last: It is an input iterator to the last element of the range, where the element itself is not included in the range. result: It is an output iterator to the first element of the new container in which the elements are copied. Return valueAn iterator to the last element of the new range beginning with result is returned. Example 1Output: newvector contains: 15 25 35 45 55 65 75 ComplexityThe complexity of the function is linear starting from the first element to the last one. Data racesSome or all of the container objects are accesed. ExceptionsThe function throws an exception if any of the container elements throws one. Next TopicC++ Algorithm copy_if Function |
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