std::replace_copy, std::replace_copy_if

来自cppreference.com
< cpp‎ | algorithm
 
 
算法库
受约束算法及范围上的算法 (C++20)
受约束算法: std::ranges::copy, std::ranges::sort, ...
执行策略 (C++17)
不修改序列的操作
(C++11)(C++11)(C++11)
(C++17)
修改序列的操作
Partitioning operations
划分操作
排序操作
(C++11)
二分搜索操作
集合操作(在已排序范围上)
堆操作
(C++11)
最小/最大操作
(C++11)
(C++17)

排列
数值运算
未初始化存储上的操作
(C++17)
(C++17)
(C++17)
C 库
 
在标头 <algorithm> 定义
(1)
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 );
(C++20 前)
template< class InputIt, class OutputIt, class T >

constexpr OutputIt replace_copy( InputIt first, InputIt last, OutputIt d_first,

                                 const T& old_value, const T& new_value );
(C++20 起)
template< class ExecutionPolicy, class ForwardIt1, class ForwardIt2, class T >

ForwardIt2 replace_copy( ExecutionPolicy&& policy,
                         ForwardIt1 first, ForwardIt1 last, ForwardIt2 d_first,

                         const T& old_value, const T& new_value );
(2) (C++17 起)
(3)
template< class InputIt, class OutputIt, class UnaryPredicate, class T >

OutputIt replace_copy_if( InputIt first, InputIt last, OutputIt d_first,

                          UnaryPredicate p, const T& new_value );
(C++20 前)
template< class InputIt, class OutputIt, class UnaryPredicate, class T >

constexpr OutputIt replace_copy_if( InputIt first, InputIt last,
                                    OutputIt d_first,

                                    UnaryPredicate p, const T& new_value );
(C++20 起)
template< class ExecutionPolicy, class ForwardIt1, class ForwardIt2,

          class UnaryPredicate, class T >
ForwardIt2 replace_copy_if( ExecutionPolicy&& policy,
                            ForwardIt1 first, ForwardIt1 last,
                            ForwardIt2 d_first,

                            UnaryPredicate p, const T& new_value );
(4) (C++17 起)

复制来自范围 [first, last) 的元素到始于 d_first 的范围,复制过程中以 new_value 替换所有满足特定判别标准的元素。源范围与目标范围重叠时行为未定义。

1) 替换所有等于(用 operator== 比较)old_value 的元素。
3) 替换所有谓词 p 对其满足 true 的元素。
2,4)(1,3),但按照 policy 执行。这些重载只有在

std::is_execution_policy_v<std::decay_t<ExecutionPolicy>>

(C++20 前)

std::is_execution_policy_v<std::remove_cvref_t<ExecutionPolicy>>

(C++20 起)
true 时才会参与重载决议。

参数

first, last - 要复制的元素范围
d_first - 目标范围的起始
old_value - 要被替换的元素值
policy - 所用的执行策略。细节见执行策略
p - 如果应该替换元素则返回 ​true 的一元谓词。

对每个(可为 const 的) VT 类型参数 v ,其中 VTInputIt 的值类型,表达式 p(v) 必须可转换到 bool,无关乎值类别,而且必须不修改 v 。从而不允许 VT& 类型参数,亦不允许 VT ,除非对 VT 而言移动等价于复制 (C++11 起)。 ​

new_value - 用作替换者的元素值
类型要求
-
InputIt 必须符合老式输入迭代器 (LegacyInputIterator) 的要求。
-
OutputIt 必须符合老式输出迭代器 (LegacyOutputIterator) 的要求。
-
ForwardIt1, ForwardIt2 必须符合老式向前迭代器 (LegacyForwardIterator) 的要求。
-
表达式 *firstnew_value 的结果都必须可写入 d_first

返回值

指向最后复制元素后一元素的迭代器。

复杂度

给定 Nstd::distance(first, last)

1,2) 应用 Noperator==old_value 进行比较
3,4) 应用 N 次谓词 p

异常

拥有名为 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 UnaryPredicate, class T>
OutputIt replace_copy_if(InputIt first, InputIt last, OutputIt d_first,
                         UnaryPredicate p, const T& new_value)
{
    for (; first != last; ++first)
        *d_first++ = p(*first) ? new_value : *first;
    return d_first;
}

示例

下列代码打印 vector,同时临时将所有超过 5 的值替换为 99。

#include <algorithm>
#include <vector>
#include <iostream>
#include <iterator>
 
int main()
{
    std::vector<int> v{5, 7, 4, 2, 8, 6, 1, 9, 0, 3};
    std::replace_copy_if(v.begin(), v.end(),
                         std::ostream_iterator<int>(std::cout, " "),
                         [](int n){ return n > 5; }, 99);
    std::cout << '\n';
}

输出:

5 99 4 2 99 99 1 99 0 3

缺陷报告

下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。

缺陷报告 应用于 出版时的行为 正确行为
LWG 283 C++98 T 需要是 可复制赋值 (CopyAssignable) 的(对于 replace_copy 还需要是
可相等比较 (EqualityComparable) 的),但是 InputIt 的值类型不一定是 T
移除该要求
LWG 337 C++98 对于 replace_copy_ifInputIt 只需要
满足 老式迭代器 (LegacyIterator) 的要求[1]
改成
老式输入迭代器 (LegacyInputIterator)
  1. 实际上 C++ 标准中的缺陷是模板类型形参 InputIterator 被误标为 Iterator。由于 C++ 标准规定算法库函数模板的名字以 Iterator 的模板形参的类型要求需要与对应的迭代器类别的类型要求一致,迭代器模板类型形参的误标会影响到该模板形参的类型要求。

参阅

将所有满足特定判别标准的值替换为另一个值
(函数模板)
移除满足特定判别标准的元素
(函数模板)
复制一个范围内的元素,并将满足特定判别标准的元素替换为另一个值
(niebloid)