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

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

数值运算
(C++11)                       
在未初始化内存上的操作
 
受约束算法
本菜单中的所有名字均属于命名空间 std::ranges
不修改序列的操作
修改序列的操作
划分操作
排序操作
二分搜索操作(在有序范围上)
       
       
集合操作(在有序范围上)
堆操作
最小/最大操作
排列操作
折叠操作
数值操作
(C++23)            
未初始化存储上的操作
返回类型
 
在标头 <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<ranges::borrowed_iterator_t<R>, O>
    replace_copy( R&& r, O result, const T1& old_value,

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

          class T, std::output_iterator<const T&> O,
          class Proj =std::identity,
          std::indirect_unary_predicate<std::projected<I, Proj>> Pred >
requires std::indirectly_copyable<I, O>
constexpr replace_copy_if_result<I, O>
    replace_copy_if( I first, S last, O result, Pred pred,

                     const T& new_value, Proj proj ={});
(C++20 起)
(C++26 前)
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 replace_copy_if_result<I, O>
    replace_copy_if( I first, S last, O result, Pred pred,

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

          class T, std::output_iterator<const T&> O,
          class Proj =std::identity,
          std::indirect_unary_predicate
              <std::projected<ranges::iterator_t<R>, Proj>> Pred >
requires std::indirectly_copyable<ranges::iterator_t<R>, O>
constexpr replace_copy_if_result<ranges::borrowed_iterator_t<R>, O>
    replace_copy_if( R&& r, O result, Pred pred,

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

          class O, class T =std::iter_value_t<O>
          class Proj =std::identity,
          std::indirect_unary_predicate
              <std::projected<ranges::iterator_t<R>, Proj>> Pred >
requires std::indirectly_copyable<ranges::iterator_t<R>, O>&&
         std::output_iterator<O, const T&>
constexpr replace_copy_if_result<ranges::borrowed_iterator_t<R>, O>
    replace_copy_if( R&& r, O result, Pred pred,

                     const T& new_value, Proj proj ={});
(C++26 起)
辅助类型
template<class I, class O >
using replace_copy_result =ranges::in_out_result<I, O>;
(5) (C++20 起)
template<class I, class O >
using replace_copy_if_result =ranges::in_out_result<I, O>;
(6) (C++20 起)

从源范围 [firstlast) 复制元素到始于 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

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

目录

[编辑]参数

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));}};   inlineconstexpr 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(result)};}   template<ranges::input_range R, class O, class T =std::iter_value_t<O>class Proj =std::identity, std::indirect_unary_predicate<std::projected<ranges::iterator_t<R>, Proj>> Pred> requires std::indirectly_copyable<ranges::iterator_t<R>, O>&&std::output_iterator<O, const T&>constexpr ranges::replace_copy_if_result<ranges::borrowed_iterator_t<R>, O> operator()(R&& r, O result, Pred pred, const T& new_value, Proj proj ={})const{return(*this)(ranges::begin(r), ranges::end(r), std::move(result), std::move(pred), new_value, std::move(proj));}};   inlineconstexpr replace_copy_if_fn replace_copy_if {};

[编辑]注解

功能特性测试标准功能特性
__cpp_lib_algorithm_default_value_type202403(C++26)算法中的列表初始化(1-4)

[编辑]示例

#include <algorithm>#include <array>#include <complex>#include <iostream>#include <vector>   void println(constauto rem, constauto& v){for(std::cout<< rem <<": ";constauto& 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){return5< 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 5 5 4 5 r: (1,3) (2,2) (4,8) s: (2.2,4.8) (2,2) (4,8) b: (1,3) (2,2) (4,8) d: (4,2) (4,2) (4,8)

[编辑]参阅

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