std::replace_copy,std::replace_copy_if
在头文件 <algorithm> 中定义 |
||
template< class InputIt, class OutputIt, class T > OutputIt replace_copy( InputIt first, InputIt last, OutputIt d_first, |
(1) | (自 C++20 起为 constexpr) |
template< class ExecutionPolicy, class ForwardIt1, class ForwardIt2, class T > |
(2) | (自 C++17 起) |
(3) | ||
template< class InputIt, class OutputIt, class UnaryPred, class T > OutputIt replace_copy_if |
(自 C++20 起为 constexpr) (直到 C++26) |
|
template< class InputIt, class OutputIt, class UnaryPred, class T = typename std::iterator_traits |
(自 C++26 起) | |
(4) | ||
template< class ExecutionPolicy, class ForwardIt1, class ForwardIt2, class UnaryPred, class T > |
(自 C++17 起) (直到 C++26) |
|
template< class ExecutionPolicy, class ForwardIt1, class ForwardIt2, class UnaryPred, class T = typename std::iterator_traits |
(自 C++26 起) | |
将范围 [
first,
last)
中的元素复制到另一个以 d_first 开头的范围,同时用 new_value 替换满足特定条件的所有元素。
std::is_execution_policy_v<std::decay_t<ExecutionPolicy>> 为 true 时,这些重载才参与重载解析。 |
(直到 C++20) |
std::is_execution_policy_v<std::remove_cvref_t<ExecutionPolicy>> 为 true 时。 |
(自 C++20 起) |
如果表达式 *first 和 new_value 的任何结果都无法 写入 d_first,则程序格式错误。
如果源范围和目标范围重叠,则行为未定义。
内容 |
[编辑] 参数
first,last | - | 要复制的元素范围 |
d_first | - | 目标范围的开头 |
old_value | - | 要替换的元素的值 |
policy | - | 要使用的执行策略。有关详细信息,请参见 执行策略。 |
p | - | 如果元素值应该被替换,则返回 true 的一元谓词。 对于类型为 (可能为 const) |
new_value | - | 用作替换的值 |
类型要求 | ||
-InputIt 必须满足 LegacyInputIterator 的要求。 | ||
-OutputIt 必须满足 LegacyOutputIterator 的要求。 | ||
-ForwardIt1, ForwardIt2 必须满足 LegacyForwardIterator 的要求。 |
[编辑] 返回值
指向复制的最后一个元素之后的元素的迭代器。
[编辑] 复杂度
假设 N 为 std::distance(first, last)
[编辑] 异常
具有名为 ExecutionPolicy
的模板参数的重载函数报告错误如下:
- 如果作为算法一部分调用的函数执行时抛出异常,并且
ExecutionPolicy
是 标准策略 之一,则调用 std::terminate。 对于任何其他ExecutionPolicy
,行为由实现定义。 - 如果算法无法分配内存,则抛出 std::bad_alloc。
[编辑] 可能的实现
replace_copy |
---|
template<class InputIt, class OutputIt, class T> OutputIt replace_copy(InputIt first, InputIt last, OutputIt d_first, const T& old_value, const T& new_value) { for (; first != last; ++first) *d_first++ = (*first == old_value) ? new_value : *first; return d_first; } |
replace_copy_if |
template<class InputIt, class OutputIt, class UnaryPred, class T = typename std::iterator_traits<ForwardIt>::value_type> OutputIt replace_copy_if(InputIt first, InputIt last, OutputIt d_first, UnaryPred p, const T& new_value) { for (; first != last; ++first) *d_first++ = p(*first) ? new_value : *first; return d_first; } |
[编辑] 注释
特性测试 宏 | 值 | Std | 特性 |
---|---|---|---|
__cpp_lib_algorithm_default_value_type |
202403 | (C++26) | 列表初始化 用于算法 (3,4) |
[编辑] 示例
#include <algorithm> #include <complex> #include <iostream> #include <vector> void println(const auto& seq) { for (const auto& e : seq) std::cout << e << ' '; std::cout << '\n'; } int main() { std::vector<short> src{3, 1, 4, 1, 5, 9, 2, 6, 5}; println(src); std::vector<int> dst(src.size()); std::replace_copy_if(src.cbegin(), src.cend(), dst.begin(), [](short n){ return n > 5; }, 0); println(dst); std::vector<std::complex<double>> src2{{1, 3}, {2, 4}, {3, 5}}, dst2(src2.size()); println(src2); #ifdef __cpp_lib_algorithm_default_value_type std::replace_copy_if(src2.cbegin(), src2.cend(), dst2.begin(), [](std::complex<double> z){ return std::abs(z) < 5; }, {4, 2}); // Possible, since the T is deduced. #else std::replace_copy_if(src2.cbegin(), src2.cend(), dst2.begin(), [](std::complex<double> z){ return std::abs(z) < 5; }, std::complex<double>{4, 2}); #endif println(dst2); }
输出
3 1 4 1 5 9 2 6 5 3 1 4 1 5 0 2 0 5 (1,3) (2,4) (3,5) (4,2) (4,2) (3,5)
[编辑] 缺陷报告
以下行为更改缺陷报告被追溯应用于以前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确行为 |
---|---|---|---|
LWG 283 | C++98 | T 要求为 CopyAssignable (以及 EqualityComparable 用于replace_copy ),但 InputIt 的值类型并不总是 T |
删除了要求 |
LWG 337 | C++98 | replace_copy_if 仅要求 InputIt 满足 LegacyIterator[1] 的要求 |
更正为 LegacyInputIterator |
- ↑ C++ 标准中的实际缺陷是模板参数
InputIterator
被错误地指定为Iterator
。 这会影响类型要求,因为 C++ 标准指出,对于算法库中的函数模板,名称以Iterator
结尾的模板类型参数暗示了相应迭代器类别的类型要求。
[编辑] 另请参阅
用另一个值替换所有满足特定条件的值 (函数模板) | |
删除满足特定条件的元素 (函数模板) | |
(C++20)(C++20) |
复制一个范围,用另一个值替换满足特定条件的元素 (niebloid) |