std::copy, std::copy_if
定义于头文件 <algorithm> |
||
template< class InputIt, class OutputIt > OutputIt copy( InputIt first, InputIt last, |
(1) | (constexpr since C++20) |
template< class ExecutionPolicy, class ForwardIt1, class ForwardIt2 > |
(2) | (since C++17) |
template< class InputIt, class OutputIt, class UnaryPred > OutputIt copy_if( InputIt first, InputIt last, |
(3) | (since C++11) (constexpr since C++20) |
template< class ExecutionPolicy, class ForwardIt1, class ForwardIt2, class UnaryPred > |
(4) | (since C++17) |
将范围 [first, last) 中的元素复制到以 d_first 开头的另一个范围(复制目标范围)。
std::is_execution_policy_v<std::decay_t<ExecutionPolicy>> 为 true。 |
(until C++20) |
std::is_execution_policy_v<std::remove_cvref_t<ExecutionPolicy>> 为 true。 |
(since C++20) |
std::is_execution_policy_v<std::decay_t<ExecutionPolicy>> 为 true。 |
(until C++20) |
std::is_execution_policy_v<std::remove_cvref_t<ExecutionPolicy>> 为 true。 |
(since C++20) |
内容 |
[编辑] 参数
first, last | - | 定义要复制的元素源范围的迭代器对 |
d_first | - | 目标范围的开始 |
policy | - | 要使用的执行策略 |
pred | - | 一元谓词,对于所需的元素返回 true。 对于 InputIt 的值类型 |
类型要求 | ||
-InputIt 必须满足 LegacyInputIterator 的要求。 | ||
-OutputIt 必须满足 LegacyOutputIterator 的要求。 | ||
-ForwardIt1, ForwardIt2 必须满足 LegacyForwardIterator 的要求。 | ||
-UnaryPred 必须满足 Predicate 的要求。 |
[编辑] 返回值
指向目标范围中元素的输出迭代器,超过最后一个复制的元素。
[编辑] 复杂度
给定 N 为 std::distance(first, last)
对于具有 ExecutionPolicy
的重载,如果 ForwardIt1
的值类型不是 MoveConstructible,则可能会有性能成本。
[编辑] 异常
具有名为 ExecutionPolicy
的模板参数的重载按如下方式报告错误
- 如果作为算法一部分调用的函数的执行抛出异常,并且
ExecutionPolicy
是 标准策略 之一,则调用 std::terminate。 对于任何其他ExecutionPolicy
,行为是实现定义的。 - 如果算法无法分配内存,则抛出 std::bad_alloc。
[编辑] 可能的实现
copy (1) |
---|
template<class InputIt, class OutputIt> OutputIt copy(InputIt first, InputIt last, OutputIt d_first) { for (; first != last; (void)++first, (void)++d_first) *d_first = *first; return d_first; } |
copy_if (3) |
template<class InputIt, class OutputIt, class UnaryPred> OutputIt copy_if(InputIt first, InputIt last, OutputIt d_first, UnaryPred pred) { for (; first != last; ++first) if (pred(*first)) { *d_first = *first; ++d_first; } return d_first; } |
[编辑] 注释
在实践中,如果值类型是 TriviallyCopyable 且迭代器类型满足 LegacyContiguousIterator,则 std::copy
的实现会避免多次赋值并使用批量复制函数,例如 std::memmove。
当复制重叠范围时,当向左复制(目标范围的开头在源范围之外)时,std::copy
是合适的,而当向右复制(目标范围的末尾在源范围之外)时,std::copy_backward
是合适的。
[编辑] 示例
以下代码使用 std::copy
将一个 std::vector 的内容复制到另一个 std::vector,并显示结果 std::vector。
#include <algorithm> #include <iostream> #include <iterator> #include <numeric> #include <vector> int main() { std::vector<int> from_vector(10); std::iota(from_vector.begin(), from_vector.end(), 0); std::vector<int> to_vector; std::copy(from_vector.begin(), from_vector.end(), std::back_inserter(to_vector)); // or, alternatively, // std::vector<int> to_vector(from_vector.size()); // std::copy(from_vector.begin(), from_vector.end(), to_vector.begin()); // either way is equivalent to // std::vector<int> to_vector = from_vector; std::cout << "to_vector contains: "; std::copy(to_vector.begin(), to_vector.end(), std::ostream_iterator<int>(std::cout, " ")); std::cout << '\n'; std::cout << "odd numbers in to_vector are: "; std::copy_if(to_vector.begin(), to_vector.end(), std::ostream_iterator<int>(std::cout, " "), [](int x) { return x % 2 != 0; }); std::cout << '\n'; std::cout << "to_vector contains these multiples of 3: "; to_vector.clear(); std::copy_if(from_vector.begin(), from_vector.end(), std::back_inserter(to_vector), [](int x) { return x % 3 == 0; }); for (const int x : to_vector) std::cout << x << ' '; std::cout << '\n'; }
可能的输出
to_vector contains: 0 1 2 3 4 5 6 7 8 9 odd numbers in to_vector are: 1 3 5 7 9 to_vector contains these multiples of 3: 0 3 6 9
[编辑] 缺陷报告
以下行为变更缺陷报告已追溯应用于先前发布的 C++ 标准。
DR | 应用于 | 已发布行为 | 正确行为 |
---|---|---|---|
LWG 2039 | C++11 | 未指定 std::copy_if 的返回值 |
已指定 |
LWG 2044 | C++11 | 未定义 std::copy_if 的稳定性 |
已定义 |
[编辑] 参见
以向后顺序复制元素范围 (函数模板) | |
创建反转范围的副本 (函数模板) | |
(C++11) |
将多个元素复制到新位置 (函数模板) |
将给定值复制分配给范围中的每个元素 (函数模板) | |
复制元素范围,省略满足特定条件的元素 (函数模板) | |
(C++20)(C++20) |
将元素范围复制到新位置 (算法函数对象) |