mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-26 13:01:34 +03:00
169 lines
7.3 KiB
C++
Vendored
169 lines
7.3 KiB
C++
Vendored
// -*- C++ -*-
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef _LIBCPP___ALGORITHM_SEARCH_N_H
|
|
#define _LIBCPP___ALGORITHM_SEARCH_N_H
|
|
|
|
#include <__algorithm/comp.h>
|
|
#include <__algorithm/iterator_operations.h>
|
|
#include <__config>
|
|
#include <__functional/identity.h>
|
|
#include <__iterator/iterator_traits.h>
|
|
#include <__type_traits/enable_if.h>
|
|
#include <__type_traits/invoke.h>
|
|
#include <__type_traits/is_callable.h>
|
|
#include <__utility/convert_to_integral.h>
|
|
#include <__utility/pair.h>
|
|
|
|
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
|
# pragma GCC system_header
|
|
#endif
|
|
|
|
_LIBCPP_BEGIN_NAMESPACE_STD
|
|
|
|
template <class _AlgPolicy, class _Pred, class _Iter, class _Sent, class _SizeT, class _Type, class _Proj>
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 pair<_Iter, _Iter> __search_n_forward_impl(
|
|
_Iter __first, _Sent __last, _SizeT __count, const _Type& __value, _Pred& __pred, _Proj& __proj) {
|
|
if (__count <= 0)
|
|
return std::make_pair(__first, __first);
|
|
while (true) {
|
|
// Find first element in sequence that matchs __value, with a mininum of loop checks
|
|
while (true) {
|
|
if (__first == __last) { // return __last if no element matches __value
|
|
_IterOps<_AlgPolicy>::__advance_to(__first, __last);
|
|
return std::make_pair(__first, __first);
|
|
}
|
|
if (std::__invoke(__pred, std::__invoke(__proj, *__first), __value))
|
|
break;
|
|
++__first;
|
|
}
|
|
// *__first matches __value, now match elements after here
|
|
_Iter __m = __first;
|
|
_SizeT __c(0);
|
|
while (true) {
|
|
if (++__c == __count) // If pattern exhausted, __first is the answer (works for 1 element pattern)
|
|
return std::make_pair(__first, ++__m);
|
|
if (++__m == __last) { // Otherwise if source exhaused, pattern not found
|
|
_IterOps<_AlgPolicy>::__advance_to(__first, __last);
|
|
return std::make_pair(__first, __first);
|
|
}
|
|
|
|
// if there is a mismatch, restart with a new __first
|
|
if (!std::__invoke(__pred, std::__invoke(__proj, *__m), __value)) {
|
|
__first = __m;
|
|
++__first;
|
|
break;
|
|
} // else there is a match, check next elements
|
|
}
|
|
}
|
|
}
|
|
|
|
// Finds the longest suffix in [__first, __last) where each element satisfies __pred.
|
|
template <class _RAIter, class _Pred, class _Proj, class _ValueT>
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 _RAIter
|
|
__find_longest_suffix(_RAIter __first, _RAIter __last, const _ValueT& __value, _Pred& __pred, _Proj& __proj) {
|
|
while (__first != __last) {
|
|
if (!std::__invoke(__pred, std::__invoke(__proj, *--__last), __value)) {
|
|
return ++__last;
|
|
}
|
|
}
|
|
return __first;
|
|
}
|
|
|
|
template <class _AlgPolicy, class _Pred, class _Iter, class _SizeT, class _Type, class _Proj, class _DiffT>
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 std::pair<_Iter, _Iter> __search_n_random_access_impl(
|
|
_Iter __first, _SizeT __count_in, const _Type& __value, _Pred& __pred, _Proj& __proj, _DiffT __size) {
|
|
auto __last = __first + __size;
|
|
auto __count = static_cast<_DiffT>(__count_in);
|
|
|
|
if (__count == 0)
|
|
return std::make_pair(__first, __first);
|
|
if (__size < __count)
|
|
return std::make_pair(__last, __last);
|
|
|
|
// [__match_start, __match_start + __count) is the subrange which we currently check whether it only contains matching
|
|
// elements. This subrange is returned in case all the elements match.
|
|
// [__match_start, __matched_until) is the longest subrange where all elements are known to match at any given point
|
|
// in time.
|
|
// [__matched_until, __match_start + __count) is the subrange where we don't know whether the elements match.
|
|
|
|
// This algorithm tries to expand the subrange [__match_start, __matched_until) into a range of sufficient length.
|
|
// When we fail to do that because we find a mismatching element, we move it forward to the beginning of the next
|
|
// consecutive sequence that is not known not to match.
|
|
|
|
const _Iter __try_match_until = __last - __count;
|
|
_Iter __match_start = __first;
|
|
_Iter __matched_until = __first;
|
|
|
|
while (true) {
|
|
// There's no chance of expanding the subrange into a sequence of sufficient length, since we don't have enough
|
|
// elements in the haystack anymore.
|
|
if (__match_start > __try_match_until)
|
|
return std::make_pair(__last, __last);
|
|
|
|
auto __mismatch = std::__find_longest_suffix(__matched_until, __match_start + __count, __value, __pred, __proj);
|
|
|
|
// If all elements in [__matched_until, __match_start + __count) match, we know that
|
|
// [__match_start, __match_start + __count) is a full sequence of matching elements, so we're done.
|
|
if (__mismatch == __matched_until)
|
|
return std::make_pair(__match_start, __match_start + __count);
|
|
|
|
// Otherwise, we have to move the [__match_start, __matched_until) subrange forward past the point where we know for
|
|
// sure a match is impossible.
|
|
__matched_until = __match_start + __count;
|
|
__match_start = __mismatch;
|
|
}
|
|
}
|
|
|
|
template <class _Iter,
|
|
class _Sent,
|
|
class _DiffT,
|
|
class _Type,
|
|
class _Pred,
|
|
class _Proj,
|
|
__enable_if_t<__has_random_access_iterator_category<_Iter>::value, int> = 0>
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 pair<_Iter, _Iter>
|
|
__search_n_impl(_Iter __first, _Sent __last, _DiffT __count, const _Type& __value, _Pred& __pred, _Proj& __proj) {
|
|
return std::__search_n_random_access_impl<_ClassicAlgPolicy>(
|
|
__first, __count, __value, __pred, __proj, __last - __first);
|
|
}
|
|
|
|
template <class _Iter1,
|
|
class _Sent1,
|
|
class _DiffT,
|
|
class _Type,
|
|
class _Pred,
|
|
class _Proj,
|
|
__enable_if_t<__has_forward_iterator_category<_Iter1>::value &&
|
|
!__has_random_access_iterator_category<_Iter1>::value,
|
|
int> = 0>
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 pair<_Iter1, _Iter1>
|
|
__search_n_impl(_Iter1 __first, _Sent1 __last, _DiffT __count, const _Type& __value, _Pred& __pred, _Proj& __proj) {
|
|
return std::__search_n_forward_impl<_ClassicAlgPolicy>(__first, __last, __count, __value, __pred, __proj);
|
|
}
|
|
|
|
template <class _ForwardIterator, class _Size, class _Tp, class _BinaryPredicate>
|
|
[[__nodiscard__]] inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 _ForwardIterator search_n(
|
|
_ForwardIterator __first, _ForwardIterator __last, _Size __count, const _Tp& __value, _BinaryPredicate __pred) {
|
|
static_assert(
|
|
__is_callable<_BinaryPredicate&, decltype(*__first), const _Tp&>::value, "The comparator has to be callable");
|
|
auto __proj = __identity();
|
|
return std::__search_n_impl(__first, __last, std::__convert_to_integral(__count), __value, __pred, __proj).first;
|
|
}
|
|
|
|
template <class _ForwardIterator, class _Size, class _Tp>
|
|
[[__nodiscard__]] inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 _ForwardIterator
|
|
search_n(_ForwardIterator __first, _ForwardIterator __last, _Size __count, const _Tp& __value) {
|
|
return std::search_n(__first, __last, std::__convert_to_integral(__count), __value, __equal_to());
|
|
}
|
|
|
|
_LIBCPP_END_NAMESPACE_STD
|
|
|
|
#endif // _LIBCPP___ALGORITHM_SEARCH_N_H
|