命名空间
变体
操作

std::ranges::advance

来自 cppreference.com
< cpp‎ | iterator
 
 
迭代器库
迭代器概念
迭代器原语
算法概念和实用程序
间接可调用概念
通用算法要求
(C++20)
(C++20)
(C++20)
实用程序
(C++20)
迭代器适配器
迭代器操作
(C++11)  
(C++11)
ranges::advance
(C++20)
范围访问
(C++11)(C++14)
(C++14)(C++14)  
(C++11)(C++14)
(C++14)(C++14)  
(C++17)(C++20)
(C++17)
(C++17)
 
在头文件 <iterator> 中定义
调用签名
template< std::input_or_output_iterator I >
constexpr void advance( I& i, std::iter_difference_t<I> n );
(1) (自 C++20 起)
template< std::input_or_output_iterator I, std::sentinel_for<I> S >
constexpr void advance( I& i, S bound );
(2) (自 C++20 起)
template< std::input_or_output_iterator I, std::sentinel_for<I> S >
constexpr std::iter_difference_t<I> advance( I& i, std::iter_difference_t<I> n, S bound );
(3) (自 C++20 起)
1) 将给定迭代器 i 递增 n 次。
2) 将给定迭代器 i 递增,直到 i == bound
3) 将给定迭代器 i 递增 n 次,或直到 i == bound,以先发生者为准。

如果 n 为负数,则迭代器将递减。在这种情况下,I 必须模拟 std::bidirectional_iterator,并且如果提供了 bound,则 S 必须与 I 类型相同,否则行为未定义。

此页面上描述的函数式实体是 niebloids,即

在实践中,它们可能以函数对象或特殊的编译器扩展来实现。

内容

[编辑] 参数

i - 要递增的迭代器
bound - 表示 i 是一个迭代器的范围结束的哨兵
n - i 的最大递增次数

[编辑] 返回值

3) n 与实际遍历的距离 i 之间的差值。

[编辑] 复杂度

线性。

但是,如果 I 还模拟 std::random_access_iterator,或者 S 模拟 std::sized_sentinel_for<I>,或者 IS 模拟 std::assignable_from<I&, S>,则复杂度为常数。

[编辑] 说明

如果指定的递增或递减序列需要对不可递增的迭代器(例如尾后迭代器)进行递增,或者对不可递减的迭代器(例如首迭代器或单一迭代器)进行递减,则行为未定义。

[编辑] 可能的实现

struct advance_fn
{
    template<std::input_or_output_iterator I>
    constexpr void operator()(I& i, std::iter_difference_t<I> n) const
    {
        if constexpr (std::random_access_iterator<I>)
            i += n;
        else
        {
            while (n > 0)
            {
                --n;
                ++i;
            }
 
            if constexpr (std::bidirectional_iterator<I>)
            {
                while (n < 0)
                {
                    ++n;
                    --i;
                }
            }
        }
    }
 
    template<std::input_or_output_iterator I, std::sentinel_for<I> S>
    constexpr void operator()(I& i, S bound) const
    {
        if constexpr (std::assignable_from<I&, S>)
            i = std::move(bound);
        else if constexpr (std::sized_sentinel_for<S, I>)
            (*this)(i, bound - i);
        else
            while (i != bound)
                ++i;
    }
 
    template<std::input_or_output_iterator I, std::sentinel_for<I> S>
    constexpr std::iter_difference_t<I>
    operator()(I& i, std::iter_difference_t<I> n, S bound) const
    {
        if constexpr (std::sized_sentinel_for<S, I>)
        {
            // std::abs is not constexpr until C++23
            auto abs = [](const std::iter_difference_t<I> x) { return x < 0 ? -x : x; };
 
            if (const auto dist = abs(n) - abs(bound - i); dist < 0)
            {
                (*this)(i, bound);
                return -dist;
            }
 
            (*this)(i, n);
            return 0;
        }
        else
        {
            while (n > 0 && i != bound)
            {
                --n;
                ++i;
            }
 
            if constexpr (std::bidirectional_iterator<I>)
            {
                while (n < 0 && i != bound)
                {
                    ++n;
                    --i;
                }
            }
 
            return n;
        }
    }
};
 
inline constexpr auto advance = advance_fn();

[编辑] 示例

#include <iostream>
#include <iterator>
#include <vector>
 
int main()
{
    std::vector<int> v {3, 1, 4};
 
    auto vi = v.begin();
 
    std::ranges::advance(vi, 2);
    std::cout << "1) value: " << *vi << '\n' << std::boolalpha;
 
    std::ranges::advance(vi, v.end());
    std::cout << "2) vi == v.end(): " << (vi == v.end()) << '\n';
 
    std::ranges::advance(vi, -3);
    std::cout << "3) value: " << *vi << '\n';
 
    std::cout << "4) diff: " << std::ranges::advance(vi, 2, v.end())
              << ", value: " << *vi << '\n';
 
    std::cout << "5) diff: " << std::ranges::advance(vi, 4, v.end())
              << ", vi == v.end(): " << (vi == v.end()) << '\n';
}

输出

1) value: 4
2) vi == v.end(): true
3) value: 3
4) diff: 0, value: 4
5) diff: 3, vi == v.end(): true

[编辑] 另请参阅

按给定距离或到边界递增迭代器
(niebloid)[编辑]
按给定距离或到边界递减迭代器
(niebloid)[编辑]
返回迭代器和哨兵之间的距离,或范围的开头和结尾之间的距离。
(niebloid)[编辑]
将迭代器向前移动给定距离。
(函数模板) [编辑]