partition.h 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. //===----------------------------------------------------------------------===//
  2. //
  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
  6. //
  7. //===----------------------------------------------------------------------===//
  8. #ifndef _LIBCPP___ALGORITHM_PARTITION_H
  9. #define _LIBCPP___ALGORITHM_PARTITION_H
  10. #include <__algorithm/iterator_operations.h>
  11. #include <__config>
  12. #include <__iterator/iterator_traits.h>
  13. #include <__utility/move.h>
  14. #include <__utility/pair.h>
  15. #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
  16. # pragma GCC system_header
  17. #endif
  18. _LIBCPP_BEGIN_NAMESPACE_STD
  19. template <class _Predicate, class _AlgPolicy, class _ForwardIterator, class _Sentinel>
  20. _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 pair<_ForwardIterator, _ForwardIterator>
  21. __partition_impl(_ForwardIterator __first, _Sentinel __last, _Predicate __pred, forward_iterator_tag)
  22. {
  23. while (true)
  24. {
  25. if (__first == __last)
  26. return std::make_pair(std::move(__first), std::move(__first));
  27. if (!__pred(*__first))
  28. break;
  29. ++__first;
  30. }
  31. _ForwardIterator __p = __first;
  32. while (++__p != __last)
  33. {
  34. if (__pred(*__p))
  35. {
  36. _IterOps<_AlgPolicy>::iter_swap(__first, __p);
  37. ++__first;
  38. }
  39. }
  40. return std::make_pair(std::move(__first), std::move(__p));
  41. }
  42. template <class _Predicate, class _AlgPolicy, class _BidirectionalIterator, class _Sentinel>
  43. _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 pair<_BidirectionalIterator, _BidirectionalIterator>
  44. __partition_impl(_BidirectionalIterator __first, _Sentinel __sentinel, _Predicate __pred,
  45. bidirectional_iterator_tag)
  46. {
  47. _BidirectionalIterator __original_last = _IterOps<_AlgPolicy>::next(__first, __sentinel);
  48. _BidirectionalIterator __last = __original_last;
  49. while (true)
  50. {
  51. while (true)
  52. {
  53. if (__first == __last)
  54. return std::make_pair(std::move(__first), std::move(__original_last));
  55. if (!__pred(*__first))
  56. break;
  57. ++__first;
  58. }
  59. do
  60. {
  61. if (__first == --__last)
  62. return std::make_pair(std::move(__first), std::move(__original_last));
  63. } while (!__pred(*__last));
  64. _IterOps<_AlgPolicy>::iter_swap(__first, __last);
  65. ++__first;
  66. }
  67. }
  68. template <class _AlgPolicy, class _ForwardIterator, class _Sentinel, class _Predicate, class _IterCategory>
  69. inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20
  70. pair<_ForwardIterator, _ForwardIterator> __partition(
  71. _ForwardIterator __first, _Sentinel __last, _Predicate&& __pred, _IterCategory __iter_category) {
  72. return std::__partition_impl<__remove_cvref_t<_Predicate>&, _AlgPolicy>(
  73. std::move(__first), std::move(__last), __pred, __iter_category);
  74. }
  75. template <class _ForwardIterator, class _Predicate>
  76. inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX20
  77. _ForwardIterator
  78. partition(_ForwardIterator __first, _ForwardIterator __last, _Predicate __pred)
  79. {
  80. using _IterCategory = typename iterator_traits<_ForwardIterator>::iterator_category;
  81. auto __result = std::__partition<_ClassicAlgPolicy>(std::move(__first), std::move(__last), __pred, _IterCategory());
  82. return __result.first;
  83. }
  84. _LIBCPP_END_NAMESPACE_STD
  85. #endif // _LIBCPP___ALGORITHM_PARTITION_H