C++ Algorithm Function copy_if()
C++ Algorithm copy_if() function is used to copy the elements of the container [first,last] into a different container starting from result for which the value of pred is true.
Syntax
Parameter
first: 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.
pred: It is a Unary function that accepts one element as argument and checks for the condition specified.
Return value
An iterator to the last element of the new range beginning with the result is returned.
Example 1
Output:
b contains: 20 10 4
Example 2
Output:
The new vector using copy_if contains:7 9 0 0 0 0
Complexity
The complexity of the function is linear starting from the first element to the last one.
Data races
Some or all of the container objects are accessed.
Exceptions
The function throws an exception if any of the container elements throws one.