C++ Algorithm Functions copy_backward()C++ Algorithm copy_backward() function is used for copying of elements in the backward order, it accepts three arguments and then copies the elements belonging to the range [first,last]. The copying of elements begins in the reverse order with termination point at 'result'. SyntaxParameterfirst: It is a bidirectional iterator to the first element of the range, where the element itself is included in the range. last: It is a bidirectional iterator to the last element of the range, where the element itself is not included in the range. result: It is a bidirectional iterator to the final position of copied elements. Return valueThe function returns an iterator of the first element to the sequence of copied ones. Example 1Output: newvector contains: 5 10 15 5 10 15 20 25 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 accessed. ExceptionsThe function throws an exception if any of the container elements throws one. Next TopicC++ Algorithm copy_n 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