命名空间
变体
操作

std::shift_left,std::shift_right

来自 cppreference.com
< cpp‎ | algorithm
 
 
算法库
受限算法和范围上的算法 (C++20)
受限算法,例如 ranges::copyranges::sort,...
执行策略 (C++17)
排序和相关操作
分区操作
排序操作
二分搜索操作
(在分区范围上)
集合操作(在排序范围上)
合并操作(在排序范围上)
堆操作
最小/最大操作
(C++11)
(C++17)
词典比较操作
排列操作
C 库
数值操作
对未初始化内存的操作
 
在头文件 <algorithm> 中定义
template< class ForwardIt >

constexpr ForwardIt shift_left( ForwardIt first, ForwardIt last,
                                typename std::iterator_traits<ForwardIt>::

                                    difference_type n );
(1) (自 C++20 起)
template< class ExecutionPolicy, class ForwardIt >

ForwardIt shift_left( ExecutionPolicy&& policy,
                      ForwardIt first, ForwardIt last,
                      typename std::iterator_traits<ForwardIt>::

                          difference_type n );
(2) (自 C++20 起)
template< class ForwardIt >

constexpr ForwardIt shift_right( ForwardIt first, ForwardIt last,
                                 typename std::iterator_traits<ForwardIt>::

                                     difference_type n );
(3) (自 C++20 起)
template< class ExecutionPolicy, class ForwardIt >

ForwardIt shift_right( ExecutionPolicy&& policy,
                       ForwardIt first, ForwardIt last,
                       typename std::iterator_traits<ForwardIt>::

                           difference_type n );
(4) (自 C++20 起)

将范围 [firstlast) 中的元素移动 n 个位置。

1) 将元素移动到范围的开头。
  • 如果 n == 0 || n >= last - first,则没有效果。
  • 否则,对于 [0last - first - n) 中的每个整数 i,将原来位于位置 first + n + i 的元素移动到位置 first + i
移动操作按 i 的递增顺序执行,从 0 开始。
3) 将元素移动到范围的末尾。
  • 如果 n == 0 || n >= last - first,则没有效果。
  • 否则,对于 [0last - first - n) 中的每个整数 i,将原来位于位置 first + i 的元素移动到位置 first + n + i
如果 ForwardIt 满足 LegacyBidirectionalIterator 要求,则移动操作按 i 的递减顺序执行,从 last - first - n - 1 开始。
2,4)(1)(3) 相同,但根据 policy 执行,移动操作可以按任意顺序执行。
只有当 std::is_execution_policy_v<std::remove_cvref_t<ExecutionPolicy>>true 时,这些重载才会参与重载解析。

在原始范围但不在新范围中的元素将处于有效但未指定的状态。

如果满足以下任何条件,则行为未定义

内容

[编辑] 参数

first - 原始范围的开头
最后一个 - 原始范围的末尾
n - 要移动的位数
策略 - 要使用的执行策略。有关详细信息,请参见 执行策略
类型要求
-
ForwardIt 必须满足 LegacyForwardIterator 的要求。

[编辑] 返回值

1,2) 结果范围的末尾。
3,4) 结果范围的开始。
  • 如果 n 小于 std::distance(first, last),则返回一个等于 std::next(first, n) 的迭代器。
  • 否则,返回 last

[编辑] 复杂度

1,2) 最多 std::distance(first, last) - n 次赋值。
3,4) 最多 std::distance(first, last) - n 次赋值或交换。

[编辑] 异常

具有名为 ExecutionPolicy 的模板参数的重载报告错误如下

  • 如果作为算法的一部分调用的函数的执行引发异常,并且 ExecutionPolicy标准策略 之一,则会调用 std::terminate。对于任何其他 ExecutionPolicy,行为是实现定义的。
  • 如果算法无法分配内存,则会抛出 std::bad_alloc

[编辑] 说明

特性测试 Std 特性
__cpp_lib_shift 201806L (C++20) std::shift_leftstd::shift_right

[编辑] 示例

#include <algorithm>
#include <iostream>
#include <string>
#include <type_traits>
#include <vector>
 
struct S
{
    int value{0};
    bool specified_state{true};
 
    S(int v = 0) : value{v} {}
    S(S const& rhs) = default;
    S(S&& rhs) { *this = std::move(rhs); }
    S& operator=(S const& rhs) = default;
    S& operator=(S&& rhs)
    {
        if (this != &rhs)
        {
            value = rhs.value;
            specified_state = rhs.specified_state;
            rhs.specified_state = false;
        }
        return *this;
    }
};
 
template<typename T>
std::ostream& operator<<(std::ostream& os, std::vector<T> const& v)
{
    for (const auto& s : v)
    {
        if constexpr (std::is_same_v<T, S>)
            s.specified_state ? os << s.value << ' ' : os << ". ";
        else if constexpr (std::is_same_v<T, std::string>)
            os << (s.empty() ? "." : s) << ' ';
        else
            os << s << ' ';
    }
    return os;
}
 
int main()
{
    std::cout << std::left;
 
    std::vector<S>           a{1, 2, 3, 4, 5, 6, 7};
    std::vector<int>         b{1, 2, 3, 4, 5, 6, 7};
    std::vector<std::string> c{"α", "β", "γ", "δ", "ε", "ζ", "η"};
 
    std::cout << "vector<S> \tvector<int> \tvector<string>\n";
    std::cout << a << "  " << b << "  " << c << '\n';
 
    std::shift_left(begin(a), end(a), 3);
    std::shift_left(begin(b), end(b), 3);
    std::shift_left(begin(c), end(c), 3);
    std::cout << a << "  " << b << "  " << c << '\n';
 
    std::shift_right(begin(a), end(a), 2);
    std::shift_right(begin(b), end(b), 2);
    std::shift_right(begin(c), end(c), 2);
    std::cout << a << "  " << b << "  " << c << '\n';
 
    std::shift_left(begin(a), end(a), 8); // has no effect: n >= last - first
    std::shift_left(begin(b), end(b), 8); // ditto
    std::shift_left(begin(c), end(c), 8); // ditto
    std::cout << a << "  " << b << "  " << c << '\n';
 
//  std::shift_left(begin(a), end(a), -3); // UB, e.g. segfault
}

可能的输出

vector<S>       vector<int>     vector<string>
1 2 3 4 5 6 7   1 2 3 4 5 6 7   α β γ δ ε ζ η
4 5 6 7 . . .   4 5 6 7 5 6 7   δ ε ζ η . . .
. . 4 5 6 7 .   4 5 4 5 6 7 5   . . δ ε ζ η .
. . 4 5 6 7 .   4 5 4 5 6 7 5   . . δ ε ζ η .

[编辑] 另请参见

(C++11)
将一系列元素移动到新位置
(函数模板) [编辑]
以相反顺序将一系列元素移动到新位置
(函数模板) [编辑]
旋转范围内的元素顺序
(函数模板) [编辑]
移动范围内的元素
(niebloid)[编辑]