std::replace, std::replace_if

来自cppreference.com
< cpp‎ | algorithm
 
 
算法库
受约束算法及范围上的算法 (C++20)
包含算法例如 ranges::copy, ranges::sort, ...
执行策略 (C++17)
排序和相关操作
划分操作
排序操作
二分搜索操作(在已划分范围上)
集合操作(在有序范围上)
归并操作(在有序范围上)
堆操作
最小/最大操作
(C++11)
(C++17)
字典序比较操作
排列操作
C 库

数值运算
(C++11)                       
在未初始化内存上的操作
 
在标头 <algorithm> 定义
template< class ForwardIt, class T >

void replace( ForwardIt first, ForwardIt last,

              const T& old_value, const T& new_value );
(1) (C++20 起 constexpr)
template< class ExecutionPolicy, class ForwardIt, class T >

void replace( ExecutionPolicy&& policy,
              ForwardIt first, ForwardIt last,

              const T& old_value, const T& new_value );
(2) (C++17 起)
template< class ForwardIt, class UnaryPred, class T >

void replace_if( ForwardIt first, ForwardIt last,

                 UnaryPred p, const T& new_value );
(3) (C++20 起 constexpr)
template< class ExecutionPolicy,

          class ForwardIt, class UnaryPred, class T >
void replace_if( ExecutionPolicy&& policy,
                 ForwardIt first, ForwardIt last,

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

new_value 替换范围 [firstlast) 中所有满足特定判别标准的元素。

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 = new_value 非法 (C++20 前)new_value可写入 first (C++20 起),那么程序非良构。

目录

[编辑] 参数

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

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

new_value - 用作替换者的值
类型要求
-
ForwardIt 必须满足老式向前迭代器 (LegacyForwardIterator)
-
UnaryPred 必须满足谓词 (Predicate)

[编辑] 返回值

(无)

[编辑] 复杂度

给定 Nstd::distance(first, last)

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

[编辑] 异常

拥有名为 ExecutionPolicy 的模板形参的重载按下列方式报告错误:

  • 如果作为算法一部分调用的函数的执行抛出异常,且 ExecutionPolicy标准策略之一,那么调用 std::terminate。对于任何其他 ExecutionPolicy,行为由实现定义。
  • 如果算法无法分配内存,那么抛出 std::bad_alloc

[编辑] 注解

算法以引用接收 old_valuenew_value,所以如果其中任何一个是到范围 [firstlast) 中元素的引用,那么算法的行为可能会与预期不同。

[编辑] 可能的实现

replace
template<class ForwardIt, class T>
void replace(ForwardIt first, ForwardIt last,
             const T& old_value, const T& new_value)
{
    for (; first != last; ++first)
        if (*first == old_value)
            *first = new_value;
}
replace_if
template<class ForwardIt, class UnaryPred, class T>
void replace_if(ForwardIt first, ForwardIt last,
                UnaryPred p, const T& new_value)
{
    for (; first != last; ++first)
        if (p(*first))
            *first = new_value;
}

[编辑] 示例

下列代码首先在存储整数的 vector 中以 88 替换所有 8,然后以 55 替换所有小于 5 的值。

#include <algorithm>
#include <array>
#include <functional>
#include <iostream>
 
int main()
{
    std::array<int, 10> s{5, 7, 4, 2, 8, 6, 1, 9, 0, 3};
 
    std::replace(s.begin(), s.end(), 8, 88);
 
    for (int a : s)
        std::cout << a << ' ';
    std::cout << '\n';
 
    std::replace_if(s.begin(), s.end(), 
                    std::bind(std::less<int>(), std::placeholders::_1, 5), 55);
 
    for (int a : s)
        std::cout << a << ' ';
    std::cout << '\n';
}

输出:

5 7 4 2 88 6 1 9 0 3
5 7 55 55 88 6 55 9 55 55

[编辑] 缺陷报告

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

缺陷报告 应用于 出版时的行为 正确行为
LWG 283 C++98 T 需要是可复制赋值 (CopyAssignable) 的(对于 replace
还需要是可相等比较 (EqualityComparable) 的),但是
ForwardIt 的值类型不一定是 TT 也不一定可写入 ForwardIt
改成要求
*first = new_value 合法

[编辑] 参阅

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