std::remove_copy, std::remove_copy_if
在标头 <algorithm> 定义
|
||
(1) | ||
template< class InputIt, class OutputIt, class T > OutputIt remove_copy( InputIt first, InputIt last, |
(C++20 前) | |
template< class InputIt, class OutputIt, class T > constexpr OutputIt remove_copy( InputIt first, InputIt last, |
(C++20 起) | |
template< class ExecutionPolicy, class ForwardIt1, class ForwardIt2, class T > ForwardIt2 remove_copy( ExecutionPolicy&& policy, |
(2) | (C++17 起) |
(3) | ||
template< class InputIt, class OutputIt, class UnaryPredicate > OutputIt remove_copy_if( InputIt first, InputIt last, |
(C++20 前) | |
template< class InputIt, class OutputIt, class UnaryPredicate > constexpr OutputIt remove_copy_if( InputIt first, InputIt last, |
(C++20 起) | |
template< class ExecutionPolicy, class ForwardIt1, class ForwardIt2, class UnaryPredicate > |
(4) | (C++17 起) |
复制来自范围 [first, last)
的元素到始于 d_first 的另一范围,省略满足特定判别标准的元素。
std::is_execution_policy_v<std::decay_t<ExecutionPolicy>> |
(C++20 前) |
std::is_execution_policy_v<std::remove_cvref_t<ExecutionPolicy>> |
(C++20 起) |
源范围与目标范围重叠时行为未定义。
参数
first, last | - | 要复制的元素范围 |
d_first | - | 目标范围的起始。 |
value | - | 不复制的元素的值 |
policy | - | 所用的执行策略。细节见执行策略。 |
类型要求 | ||
-InputIt 必须符合老式输入迭代器 (LegacyInputIterator) 的要求。
| ||
-OutputIt 必须符合老式输出迭代器 (LegacyOutputIterator) 的要求。
| ||
-ForwardIt1, ForwardIt2 必须符合老式向前迭代器 (LegacyForwardIterator) 的要求。
| ||
-UnaryPredicate 必须符合谓词 (Predicate) 的要求。
|
表达式 *d_first = *first 必须合法。 |
(C++20 前) |
*first 必须可写入 d_first。 |
(C++20 起) |
返回值
指向最后被复制元素的迭代器。
复杂度
给定 N
为 std::distance(first, last):
N
次 operator==
与 value 进行比较N
次谓词 p对拥有 ExecutionPolicy
的重载,ForwardIt1
的值类型不 可移动构造 (MoveConstructible) 时会有性能开销。
异常
拥有名为 ExecutionPolicy
的模板形参的重载按下列方式报告错误:
- 如果作为算法一部分调用的函数的执行抛出异常,且
ExecutionPolicy
是标准策略之一,那么调用 std::terminate。对于任何其他ExecutionPolicy
,行为由实现定义。 - 如果算法无法分配内存,那么抛出 std::bad_alloc。
可能的实现
remove_copy |
---|
template<class InputIt, class OutputIt, class T> OutputIt remove_copy(InputIt first, InputIt last, OutputIt d_first, const T& value) { for (; first != last; ++first) if (!(*first == value)) *d_first++ = *first; return d_first; } |
remove_copy_if |
template<class InputIt, class OutputIt, class UnaryPredicate> OutputIt remove_copy_if(InputIt first, InputIt last, OutputIt d_first, UnaryPredicate p) { for (; first != last; ++first) if (!p(*first)) *d_first++ = *first; return d_first; } |
示例
下列代码输出字符串并临时擦除空格。
#include <algorithm> #include <iterator> #include <string> #include <iostream> #include <iomanip> int main() { std::string str = "#返回#值#优化"; std::cout << "擦除前:" << std::quoted(str) << "\n"; std::cout << "擦除后:\""; std::remove_copy(str.begin(), str.end(), std::ostream_iterator<char>(std::cout), '#'); std::cout << "\"\n"; }
输出:
擦除前:#返回#值#优化 擦除后:返回值优化
缺陷报告
下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。
缺陷报告 | 应用于 | 出版时的行为 | 正确行为 |
---|---|---|---|
LWG 779 | C++98 | T 需要是 可相等比较 (EqualityComparable) 的,但是 ForwardIt 的值类型不一定是 T
|
改成要求 *d_first = *first 合法 |
参阅
移除满足特定判别标准的元素 (函数模板) | |
(C++11) |
将某一范围的元素复制到一个新的位置 (函数模板) |
(C++11) |
复制一个范围,将各元素分为两组 (函数模板) |