命名空间
变体
操作

std::ranges::unique

来自 cppreference.com
< cpp‎ | algorithm‎ | ranges
 
 
算法库
受限算法和范围上的算法 (C++20)
受限算法,例如 ranges::copy, ranges::sort, ...
执行策略 (C++17)
排序和相关操作
分区操作
排序操作
二分搜索操作
(在已分区范围内)
集合操作(在已排序范围内)
合并操作(在已排序范围内)
堆操作
最小/最大操作
(C++11)
(C++17)
字典序比较操作
排列操作
C 库
数值操作
未初始化内存操作
 
受限算法
此菜单中的所有名称都属于命名空间 std::ranges
非修改序列操作
修改序列操作
分区操作
排序操作
二分搜索操作(在已排序范围内)
       
       
集合操作(在已排序范围内)
堆操作
最小/最大操作
       
       
排列操作
折叠操作
数值操作
(C++23)            
未初始化存储操作
返回类型
 
定义在头文件 <algorithm>
调用签名
template< std::permutable I, std::sentinel_for<I> S, class Proj = std::identity,

          std::indirect_equivalence_relation<std::projected<I, Proj>>
              C = ranges::equal_to >
constexpr ranges::subrange<I>

    unique( I first, S last, C comp = {}, Proj proj = {} );
(1) (自 C++20 起)
template< ranges::forward_range R, class Proj = std::identity,

          std::indirect_equivalence_relation<std::projected<ranges::iterator_t<R>, Proj>>
              C = ranges::equal_to >
requires std::permutable<ranges::iterator_t<R>>
constexpr ranges::borrowed_subrange_t<R>

    unique( R&& r, C comp = {}, Proj proj = {} );
(2) (自 C++20 起)
1) 从范围 [firstlast) 中的每个连续的等效元素组中,除了第一个元素之外的所有元素都会被消除,并返回一个子范围 [retlast),其中 ret 是该范围新末尾的超尾迭代器。
如果 std::invoke(comp, std::invoke(proj, *(i - 1)), std::invoke(proj, *i)) == true,则认为两个连续元素 *(i - 1)*i 是等效的,其中 i 是范围 [first + 1last) 中的迭代器。
2)(1) 相同,但使用 r 作为范围,就好像使用 ranges::begin(r) 作为 first,以及 ranges::end(r) 作为 last

本页描述的函数式实体是 niebloids,即

实际上,它们可以实现为函数对象,或者使用特殊的编译器扩展。

内容

[编辑] 参数

first, last - 要处理的元素范围
r - 要处理的元素范围
comp - 用于比较投影元素的二元谓词
proj - 要应用于元素的投影

[编辑] 返回值

返回 {ret, last},其中 ret 是范围新末尾的越界迭代器。

[编辑] 复杂度

对于非空范围,正好 ranges::distance(first, last) - 1 次对应谓词 comp 的应用,以及不超过两倍于任何投影 proj 的应用次数。

[编辑] 备注

移除是通过移动元素(通过移动赋值)完成的,这样,不应移除的元素就会出现在范围的开头。保留剩余元素的相对顺序,容器的物理大小保持不变。[retlast) 中的迭代器(如果有)仍然可以解引用,但元素本身的值不确定(根据 MoveAssignable 后置条件)。

ranges::unique 的调用有时会后跟对容器的 erase 成员函数的调用,该函数会擦除不确定的值,并将容器的物理大小缩减以匹配其新的逻辑大小。这两个调用一起模拟了 Erase–remove idiom

[编辑] 可能的实现

struct unique_fn
{
    template<std::permutable I, std::sentinel_for<I> S, class Proj = std::identity,
             std::indirect_equivalence_relation<std::projected<I, Proj>>
                 C = ranges::equal_to>
    constexpr ranges::subrange<I>
        operator()(I first, S last, C comp = {}, Proj proj = {}) const
    {
        first = ranges::adjacent_find(first, last, comp, proj);
        if (first == last)
            return {first, first};
        auto i {first};
        ++first;
        while (++first != last)
            if (!std::invoke(comp, std::invoke(proj, *i), std::invoke(proj, *first)))
                *++i = ranges::iter_move(first);
        return {++i, first};
    }
 
    template<ranges::forward_range R, class Proj = std::identity,
             std::indirect_equivalence_relation<std::projected<ranges::iterator_t<R>, Proj>>
                 C = ranges::equal_to>
    requires std::permutable<ranges::iterator_t<R>>
    constexpr ranges::borrowed_subrange_t<R>
        operator()(R&& r, C comp = {}, Proj proj = {}) const
    {
        return (*this)(ranges::begin(r), ranges::end(r),
                       std::move(comp), std::move(proj));
    }
};
 
inline constexpr unique_fn unique {};

[编辑] 示例

#include <algorithm>
#include <cmath>
#include <complex>
#include <iostream>
#include <vector>
 
struct id {
    int i;
    explicit id(int i) : i {i} {}
};
 
void print(id i, const auto& v)
{
    std::cout << i.i << ") ";
    std::ranges::for_each(v, [](auto const& e) { std::cout << e << ' '; });
    std::cout << '\n';
}
 
int main()
{
    // a vector containing several duplicated elements
    std::vector<int> v {1, 2, 1, 1, 3, 3, 3, 4, 5, 4};
 
    print(id {1}, v);
 
    // remove consecutive (adjacent) duplicates
    const auto ret = std::ranges::unique(v);
    // v now holds {1 2 1 3 4 5 4 x x x}, where 'x' is indeterminate
    v.erase(ret.begin(), ret.end());
    print(id {2}, v);
 
    // sort followed by unique, to remove all duplicates
    std::ranges::sort(v); // {1 1 2 3 4 4 5}
    print(id {3}, v);
 
    const auto [first, last] = std::ranges::unique(v.begin(), v.end());
    // v now holds {1 2 3 4 5 x x}, where 'x' is indeterminate
    v.erase(first, last);
    print(id {4}, v);
 
    // unique with custom comparison and projection
    std::vector<std::complex<int>> vc { {1, 1}, {-1, 2}, {-2, 3}, {2, 4}, {-3, 5} };
    print(id {5}, vc);
 
    const auto ret2 = std::ranges::unique(vc,
        // consider two complex nums equal if their real parts are equal by module:
        [](int x, int y) { return std::abs(x) == std::abs(y); }, // comp
        [](std::complex<int> z) { return z.real(); }             // proj
    );
    vc.erase(ret2.begin(), ret2.end());
    print(id {6}, vc);
}

输出

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
5) (1,1) (-1,2) (-2,3) (2,4) (-3,5)
6) (1,1) (-2,3) (-3,5)

[编辑] 参见

创建一个包含没有连续重复元素的某些元素范围的副本
(niebloid)[编辑]
找到第一个两个相邻且相等的项目(或满足给定谓词的项目)
(niebloid)[编辑]
移除满足特定条件的元素
(niebloid)[编辑]
移除范围内的连续重复元素
(函数模板) [编辑]
移除连续重复元素
(std::list<T,Allocator> 的公共成员函数) [编辑]
移除连续重复元素
(std::forward_list<T,Allocator> 的公共成员函数) [编辑]