std::unique
定义于头文件 <algorithm> |
||
template< class ForwardIt > ForwardIt unique( ForwardIt first, ForwardIt last ); |
(1) | (C++20 起为 constexpr) |
template< class ExecutionPolicy, class ForwardIt > ForwardIt unique( ExecutionPolicy&& policy, |
(2) | (C++17 起) |
template< class ForwardIt, class BinaryPred > ForwardIt unique( ForwardIt first, ForwardIt last, BinaryPred p ); |
(3) | (C++20 起为 constexpr) |
template< class ExecutionPolicy, class ForwardIt, class BinaryPred > |
(4) | (C++17 起) |
从范围 [
first,
last)
中,移除每个连续的等价元素组中除第一个元素外的所有元素,并返回指向新范围末尾的后尾迭代器。
std::is_execution_policy_v<std::decay_t<ExecutionPolicy>> 为 true。 |
(C++20 前) |
std::is_execution_policy_v<std::remove_cvref_t<ExecutionPolicy>> 为 true。 |
(C++20 起) |
目录 |
[edit] 说明
移除是通过移动范围中的元素来完成的,使得不被移除的元素出现在范围的开头。
- 移动是通过 复制赋值(直到 C++11)移动赋值(自 C++11 起)。
- 移除操作是稳定的:未被移除的元素的相对顺序保持不变。
- 移除操作不会缩短
[
first,
last)
的底层序列。给定 result 作为返回的迭代器
[
result,
last)
中的所有迭代器仍然可解引用。
|
(C++11 起) |
[edit] 参数
first, last | - | 定义要处理的元素范围的迭代器对 |
policy | - | 要使用的 执行策略 |
p | - | 二元谓词,如果元素应被视为相等,则返回 true。 谓词函数的签名应等效于以下内容: bool pred(const Type1 &a, const Type2 &b); 虽然签名不需要包含 const &,但函数不得修改传递给它的对象,并且必须能够接受 |
类型要求 | ||
-ForwardIt 必须满足 LegacyForwardIterator 的要求。 | ||
-解引用 ForwardIt 的类型必须满足 可移动赋值 (MoveAssignable) 的要求。 |
[edit] 返回值
指向范围新末尾的 ForwardIt
。
[edit] 复杂度
给定 N 作为 std::distance(first, last)
[edit] 异常
带有模板参数 ExecutionPolicy
的重载按如下方式报告错误
- 如果作为算法一部分调用的函数执行期间抛出异常,并且
ExecutionPolicy
是标准策略之一,则调用 std::terminate。对于任何其他ExecutionPolicy
,行为是实现定义的。 - 如果算法未能分配内存,则抛出 std::bad_alloc。
[edit] 可能实现
另请参阅 libstdc++、libc++ 和 MSVC STL 中的实现。
unique (1) |
---|
template<class ForwardIt> ForwardIt unique(ForwardIt first, ForwardIt last) { if (first == last) return last; ForwardIt result = first; while (++first != last) if (!(*result == *first) && ++result != first) *result = std::move(*first); return ++result; } |
unique (3) |
template<class ForwardIt, class BinaryPredicate> ForwardIt unique(ForwardIt first, ForwardIt last, BinaryPredicate p) { if (first == last) return last; ForwardIt result = first; while (++first != last) if (!p(*result, *first) && ++result != first) *result = std::move(*first); return ++result; } |
[edit] 注意
对 unique
的调用通常会后接对容器的 erase
成员函数的调用,以实际从容器中移除元素。
[edit] 示例
#include <algorithm> #include <iostream> #include <vector> int main() { // a vector containing several duplicate elements std::vector<int> v{1, 2, 1, 1, 3, 3, 3, 4, 5, 4}; auto print = [&](int id) { std::cout << "@" << id << ": "; for (int i : v) std::cout << i << ' '; std::cout << '\n'; }; print(1); // remove consecutive (adjacent) duplicates auto last = std::unique(v.begin(), v.end()); // v now holds {1 2 1 3 4 5 4 x x x}, where 'x' is indeterminate v.erase(last, v.end()); print(2); // sort followed by unique, to remove all duplicates std::sort(v.begin(), v.end()); // {1 1 2 3 4 4 5} print(3); last = std::unique(v.begin(), v.end()); // v now holds {1 2 3 4 5 x x}, where 'x' is indeterminate v.erase(last, v.end()); print(4); }
输出
@1: 1 2 1 1 3 3 3 4 5 4 @2: 1 2 1 3 4 5 4 @3: 1 1 2 3 4 4 5 @4: 1 2 3 4 5
[edit] 缺陷报告
下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。
缺陷报告 | 应用于 | 发布时的行为 | 正确的行为 |
---|---|---|---|
LWG 202 | C++98 | 如果元素使用非等价关系进行比较,则行为不明确。 如果元素使用非等价关系进行比较,行为不明确 |
在这种情况下,行为是 未定义的 |
[edit] 参阅
寻找第一对相等的(或满足给定谓词的)相邻项 (函数模板) | |
创建一个不含连续重复元素的某个元素范围的副本 (函数模板) | |
移除满足特定标准的元素 (函数模板) | |
移除连续的重复元素 ( std::list<T,Allocator> 的公共成员函数) | |
移除连续的重复元素 ( std::forward_list<T,Allocator> 的公共成员函数) | |
(C++20) |
移除一个范围中的连续重复元素 (算法函数对象) |