1 //===----------------------------------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #ifndef _LIBCPP___ALGORITHM_SHIFT_RIGHT_H
10 #define _LIBCPP___ALGORITHM_SHIFT_RIGHT_H
12 #include <__algorithm/move.h>
13 #include <__algorithm/move_backward.h>
14 #include <__algorithm/swap_ranges.h>
16 #include <__iterator/iterator_traits.h>
17 #include <__utility/swap.h>
19 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
20 # pragma GCC system_header
24 #include <__undef_macros>
26 _LIBCPP_BEGIN_NAMESPACE_STD
28 #if _LIBCPP_STD_VER >= 20
30 template <class _ForwardIterator
>
31 inline _LIBCPP_HIDE_FROM_ABI
constexpr _ForwardIterator
32 shift_right(_ForwardIterator __first
,
33 _ForwardIterator __last
,
34 typename iterator_traits
<_ForwardIterator
>::difference_type __n
) {
39 if constexpr (__has_random_access_iterator_category
<_ForwardIterator
>::value
) {
40 decltype(__n
) __d
= __last
- __first
;
44 _ForwardIterator __m
= __first
+ (__d
- __n
);
45 return std::move_backward(__first
, __m
, __last
);
46 } else if constexpr (__has_bidirectional_iterator_category
<_ForwardIterator
>::value
) {
47 _ForwardIterator __m
= __last
;
48 for (; __n
> 0; --__n
) {
54 return std::move_backward(__first
, __m
, __last
);
56 _ForwardIterator __ret
= __first
;
57 for (; __n
> 0; --__n
) {
58 if (__ret
== __last
) {
64 // We have an __n-element scratch space from __first to __ret.
65 // Slide an __n-element window [__trail, __lead) from left to right.
66 // We're essentially doing swap_ranges(__first, __ret, __trail, __lead)
67 // over and over; but once __lead reaches __last we needn't bother
68 // to save the values of elements [__trail, __last).
70 auto __trail
= __first
;
72 while (__trail
!= __ret
) {
73 if (__lead
== __last
) {
74 std::move(__first
, __trail
, __ret
);
81 _ForwardIterator __mid
= __first
;
83 if (__lead
== __last
) {
84 __trail
= std::move(__mid
, __ret
, __trail
);
85 std::move(__first
, __mid
, __trail
);
88 swap(*__mid
, *__trail
);
99 #endif // _LIBCPP_STD_VER >= 20
101 _LIBCPP_END_NAMESPACE_STD
105 #endif // _LIBCPP___ALGORITHM_SHIFT_RIGHT_H