Namespaces
Variants

std::ranges:: replace_copy, std::ranges:: replace_copy_if, std::ranges:: replace_copy_result, std::ranges:: replace_copy_if_result

From cppreference.net
Algorithm library
Constrained algorithms and algorithms on ranges (C++20)
Constrained algorithms, e.g. ranges::copy , ranges::sort , ...
Execution policies (C++17)
Non-modifying sequence operations
Batch operations
(C++17)
Search operations
Modifying sequence operations
Copy operations
(C++11)
(C++11)
Swap operations
Transformation operations
Generation operations
Removing operations
Order-changing operations
(until C++17) (C++11)
(C++20) (C++20)
Sampling operations
(C++17)

Sorting and related operations
Partitioning operations
Sorting operations
Binary search operations
(on partitioned ranges)
Set operations (on sorted ranges)
Merge operations (on sorted ranges)
Heap operations
Minimum/maximum operations
Lexicographical comparison operations
Permutation operations
C library
Numeric operations
Operations on uninitialized memory
Constrained algorithms
All names in this menu belong to namespace std::ranges
Non-modifying sequence operations
Modifying sequence operations
Partitioning operations
Sorting operations
Binary search operations (on sorted ranges)
Set operations (on sorted ranges)
Heap operations
Minimum/maximum operations
Permutation operations
Fold operations
Operations on uninitialized storage
Return types
定义于头文件 <algorithm>
调用签名
(1)
template < std:: input_iterator I, std:: sentinel_for < I > S, class T1, class T2,

std:: output_iterator < const T2 & > O, class Proj = std:: identity >
requires std:: indirectly_copyable < I, O > &&
std:: indirect_binary_predicate
< ranges:: equal_to , std :: projected < I, Proj > , const T1 * >
constexpr replace_copy_result < I, O >
replace_copy ( I first, S last, O result, const T1 & old_value,

const T2 & new_value, Proj proj = { } ) ;
(C++20 起)
(C++26 前)
template < std:: input_iterator I, std:: sentinel_for < I > S,

class O, class Proj = std:: identity ,
class T1 = std :: projected_value_t < I, Proj > ,
class T2 = std:: iter_value_t < O > >
requires std:: indirectly_copyable < I, O > &&
std:: indirect_binary_predicate
< ranges:: equal_to , std :: projected < I, Proj > , const T1 * > &&
std:: output_iterator < O, const T2 & >
constexpr replace_copy_result < I, O >
replace_copy ( I first, S last, O result, const T1 & old_value,

const T2 & new_value, Proj proj = { } ) ;
(C++26 起)
(2)
template < ranges:: input_range R, class T1, class T2,

std:: output_iterator < const T2 & > O, class Proj = std:: identity >
requires std:: indirectly_copyable < ranges:: iterator_t < R > , O > &&
std:: indirect_binary_predicate
< ranges:: equal_to ,
std :: projected < ranges:: iterator_t < R > , Proj > , const T1 * >
constexpr replace_copy_result < ranges:: borrowed_iterator_t < R > , O >
replace_copy ( R && r, O result, const T1 & old_value,

const T2 & new_value, Proj proj = { } ) ;
(C++20 起)
(C++26 前)
template < ranges:: input_range R,

class O, class Proj = std:: identity ,
class T1 = std :: projected_value_t < ranges:: iterator_t < R > , Proj > ,
class T2 = std:: iter_value_t < O > >
requires std:: indirectly_copyable < ranges:: iterator_t < R > , O > &&
std:: indirect_binary_predicate
< ranges:: equal_to ,
std :: projected < ranges:: iterator_t < R > , Proj > , const T1 * > &&
std:: output_iterator < O, const T2 & >
constexpr replace_copy_result &lt

将源范围 [ first , last ) 中的元素复制到以 result 开始的目标范围,并将所有满足特定条件的元素替换为 new_value 。若源范围与目标范围重叠,则行为未定义。

1) 替换所有等于 old_value 的元素,使用 std:: invoke ( proj, * ( first + ( i - result ) ) ) == old_value 进行比较。
3) 替换所有谓词 pred 评估为 true 的元素,其中评估表达式为 std:: invoke ( pred, std:: invoke ( proj, * ( first + ( i - result ) ) ) )
2,4) (1,3) 相同,但使用 r 作为源范围,如同以 ranges:: begin ( r ) 作为 first ,并以 ranges:: end ( r ) 作为 last

本页面描述的函数式实体是 算法函数对象 (非正式称为 niebloids ),即:

目录

参数

first, last - 定义待复制元素 范围 的迭代器-哨位对
r - 待复制的元素范围
result - 目标范围的起始位置
old_value - 待替换元素的值
new_value - 用作替换的值
pred - 应用于投影元素的谓词
proj - 应用于元素的投影

返回值

{ last, result + N } ,其中

1,3) N = ranges:: distance ( first, last ) ;
2,4) N = ranges:: distance ( r ) .

复杂度

恰好进行 N 次对应谓词 comp 与任何投影 proj 的应用。

可能的实现

replace_copy (1,2)
struct replace_copy_fn
{
    template<std::input_iterator I, std::sentinel_for<I> S,
             class O, class Proj = std::identity,
             class T1 = std::projected_value_t<I, Proj>,
             class T2 = std::iter_value_t<O>>
    requires std::indirectly_copyable<I, O> &&
             std::indirect_binary_predicate
                 <ranges::equal_to, std::projected<I, Proj>, const T1*> &&
             std::output_iterator<O, const T2&>
    constexpr ranges::replace_copy_result<I, O>
        operator()(I first, S last, O result, const T1& old_value,
                   const T2& new_value, Proj proj = {}) const
    {
        for (; first != last; ++first, ++result)
            *result = (std::invoke(proj, *first) == old_value) ? new_value : *first;
        return {std::move(first), std::move(result)};
    }
    template<ranges::input_range R, class O, class Proj = std::identity,
             class T1 = std::projected_value_t<ranges::iterator_t<R>, Proj>,
             class T2 = std::iter_value_t<O>>
    requires std::indirectly_copyable<ranges::iterator_t<R>, O> &&
             std::indirect_binary_predicate
                 <ranges::equal_to,
                  std::projected<ranges::iterator_t<R>, Proj>, const T1*>
    constexpr ranges::replace_copy_result<ranges::borrowed_iterator_t<R>, O>
        operator()(R&& r, O result, const T1& old_value,
                   const T2& new_value, Proj proj = {}) const
    {
        return (*this)(ranges::begin(r), ranges::end(r), std::move(result),
                       old_value, new_value, std::move(proj));
    }
};
inline constexpr replace_copy_fn replace_copy {};
replace_copy_if (3,4)
struct replace_copy_if_fn
{
    template<std::input_iterator I, std::sentinel_for<I> S,
             class O, class T = std::iter_value_t<O>
             class Proj = std::identity,
             std::indirect_unary_predicate<std::projected<I, Proj>> Pred>
    requires std::indirectly_copyable<I, O> && std::output_iterator<O, const T&>
    constexpr ranges::replace_copy_if_result<I, O>
        operator()(I first, S last, O result, Pred pred,
                   const T& new_value, Proj proj = {}) const
    {
        for (; first != last; ++first, ++result)
             *result = std::invoke(pred, std::invoke(proj, *first)) ? new_value : *first;
        return {std::move(first), std::move(

注释

功能测试 标准 功能
__cpp_lib_algorithm_default_value_type 202403 (C++26) 算法的 列表初始化 ( 1-4 )

示例

#include <algorithm>
#include <array>
#include <complex>
#include <iostream>
#include <vector>
void println(const auto rem, const auto& v)
{
    for (std::cout << rem << ": "; const auto& e : v)
        std::cout << e << ' ';
    std::cout << '\n';
}
int main()
{    
    std::vector<int> o;
    std::array p{1, 6, 1, 6, 1, 6};
    o.resize(p.size());
    println("p", p);
    std::ranges::replace_copy(p, o.begin(), 6, 9);
    println("o", o);
    std::array q{1, 2, 3, 6, 7, 8, 4, 5};
    o.resize(q.size());
    println("q", q);
    std::ranges::replace_copy_if(q, o.begin(), [](int x) { return 5 < x; }, 5);
    println("o", o);
    std::vector<std::complex<short>> r{{1, 3}, {2, 2}, {4, 8}};
    std::vector<std::complex<float>> s(r.size());
    println("r", r);
    #ifdef __cpp_lib_algorithm_default_value_type
        std::ranges::replace_copy(r, s.begin(),
                                  {1, 3}, // T1 被推导
                                  {2.2, 4.8}); // T2 被推导
    #else
        std::ranges::replace_copy(r, s.begin(),
                                  std::complex<short>{1, 3},
                                  std::complex<float>{2.2, 4.8});
    #endif
    println("s", s);
    std::vector<std::complex<double>> b{{1, 3}, {2, 2}, {4, 8}},
                                      d(b.size());
    println("b", b);
    #ifdef __cpp_lib_algorithm_default_value_type
        std::ranges::replace_copy_if(b, d.begin(),
            [](std::complex<double> z){ return std::abs(z) < 5; },
            {4, 2}); // 可行,因为 T 被推导
    #else
        std::ranges::replace_copy_if(b, d.begin(),
            [](std::complex<double> z){ return std::abs(z) < 5; },
            std::complex<double>{4, 2});
    #endif
    println("d", d);
}

输出:

p: 1 6 1 6 1 6
o: 1 9 1 9 1 9
q: 1 2 3 6 7 8 4 5
o: 1 2 3 5 

参见

将所有满足特定条件的值替换为另一个值
(算法函数对象)
复制范围,并将满足特定条件的元素替换为另一个值
(函数模板)