C++ Algorithm Functions move backward ()The function is used for moving of elements in the backward order, it accepts three arguments and then moves the elements belonging to the range [first,last). The moving 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 moved elements. Return valueThe function returns an iterator the first element to the sequence of moved ones. Example 1Output: elem contains: [keto] [kunal] [suraj] [shweta] [chhavi] [] [] [] [] [] Example 2Output: u1 contains : 5 9 14 8 18 u2 contains : 5 5 5 5 u1 after applying move_backward function contains: 5 5 5 8 18 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 none_of 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