mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
147 lines
5 KiB
C++
147 lines
5 KiB
C++
#ifndef SPROUT_ALGORITHM_ADJACENT_FIND_HPP
|
|
#define SPROUT_ALGORITHM_ADJACENT_FIND_HPP
|
|
|
|
#include <iterator>
|
|
#include <type_traits>
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/iterator/operation.hpp>
|
|
#include <sprout/iterator/type_traits/is_iterator.hpp>
|
|
#include <sprout/utility/pair.hpp>
|
|
#include HDR_FUNCTIONAL_SSCRISK_CEL_OR_SPROUT
|
|
|
|
namespace sprout {
|
|
namespace detail {
|
|
template<typename RandomAccessIterator>
|
|
inline SPROUT_CONSTEXPR RandomAccessIterator
|
|
adjacent_find_impl_check_ra(RandomAccessIterator found, RandomAccessIterator last) {
|
|
return sprout::distance(found, last) == 1 ? last
|
|
: found
|
|
;
|
|
}
|
|
template<typename RandomAccessIterator, typename BinaryPredicate>
|
|
inline SPROUT_CONSTEXPR RandomAccessIterator
|
|
adjacent_find_impl_ra(
|
|
RandomAccessIterator first, RandomAccessIterator last, BinaryPredicate pred,
|
|
typename std::iterator_traits<RandomAccessIterator>::difference_type pivot, RandomAccessIterator found
|
|
)
|
|
{
|
|
return found != first ? found
|
|
: pivot == 0 ? (pred(*first, *last) ? first : last)
|
|
: sprout::detail::adjacent_find_impl_ra(
|
|
sprout::next(first, pivot), last, pred,
|
|
(sprout::distance(first, last) - pivot) / 2,
|
|
sprout::detail::adjacent_find_impl_ra(
|
|
first, sprout::next(first, pivot), pred,
|
|
pivot / 2,
|
|
first
|
|
)
|
|
)
|
|
;
|
|
}
|
|
template<typename RandomAccessIterator, typename BinaryPredicate>
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
sprout::is_constant_distance_iterator<RandomAccessIterator>::value,
|
|
RandomAccessIterator
|
|
>::type
|
|
adjacent_find(
|
|
RandomAccessIterator first, RandomAccessIterator last, BinaryPredicate pred,
|
|
std::random_access_iterator_tag*
|
|
)
|
|
{
|
|
return first == last || sprout::distance(first, last) == 1 ? last
|
|
: adjacent_find_impl_check_ra(
|
|
sprout::detail::adjacent_find_impl_ra(
|
|
first, sprout::next(first, sprout::distance(first, last) - 1), pred,
|
|
(sprout::distance(first, last) - 1) / 2, first
|
|
),
|
|
last
|
|
)
|
|
;
|
|
}
|
|
|
|
template<typename ForwardIterator>
|
|
inline SPROUT_CONSTEXPR ForwardIterator
|
|
adjacent_find_impl_check(ForwardIterator found, ForwardIterator last) {
|
|
return sprout::next(found) == last ? last
|
|
: found
|
|
;
|
|
}
|
|
template<typename ForwardIterator, typename BinaryPredicate>
|
|
inline SPROUT_CONSTEXPR sprout::pair<ForwardIterator, ForwardIterator>
|
|
adjacent_find_impl_1(
|
|
sprout::pair<ForwardIterator, ForwardIterator> const& current,
|
|
ForwardIterator last, BinaryPredicate pred, typename std::iterator_traits<ForwardIterator>::difference_type n
|
|
)
|
|
{
|
|
typedef sprout::pair<ForwardIterator, ForwardIterator> type;
|
|
return current.second == last ? current
|
|
: n == 1 ? pred(*current.first, *current.second)
|
|
? type(current.first, last)
|
|
: type(current.second, sprout::next(current.second))
|
|
: sprout::detail::adjacent_find_impl_1(
|
|
sprout::detail::adjacent_find_impl_1(
|
|
current,
|
|
last, pred, n / 2
|
|
),
|
|
last, pred, n - n / 2
|
|
)
|
|
;
|
|
}
|
|
template<typename ForwardIterator, typename BinaryPredicate>
|
|
inline SPROUT_CONSTEXPR sprout::pair<ForwardIterator, ForwardIterator>
|
|
adjacent_find_impl(
|
|
sprout::pair<ForwardIterator, ForwardIterator> const& current,
|
|
ForwardIterator last, BinaryPredicate pred, typename std::iterator_traits<ForwardIterator>::difference_type n
|
|
)
|
|
{
|
|
typedef sprout::pair<ForwardIterator, ForwardIterator> type;
|
|
return current.second == last ? current
|
|
: sprout::detail::adjacent_find_impl(
|
|
sprout::detail::adjacent_find_impl_1(
|
|
current,
|
|
last, pred, n
|
|
),
|
|
last, pred, n * 2
|
|
)
|
|
;
|
|
}
|
|
template<typename ForwardIterator, typename BinaryPredicate>
|
|
inline SPROUT_CONSTEXPR ForwardIterator
|
|
adjacent_find(
|
|
ForwardIterator first, ForwardIterator last, BinaryPredicate pred,
|
|
void*
|
|
)
|
|
{
|
|
typedef sprout::pair<ForwardIterator, ForwardIterator> type;
|
|
return first == last ? last
|
|
: sprout::detail::adjacent_find_impl_check(
|
|
sprout::detail::adjacent_find_impl(type(first, sprout::next(first)), last, pred, 1).first,
|
|
last
|
|
)
|
|
;
|
|
}
|
|
} // namespace detail
|
|
|
|
// 25.2.8 Adjacent find
|
|
//
|
|
// recursion depth:
|
|
// O(log N)
|
|
//
|
|
template<typename ForwardIterator, typename BinaryPredicate>
|
|
inline SPROUT_CONSTEXPR ForwardIterator
|
|
adjacent_find(ForwardIterator first, ForwardIterator last, BinaryPredicate pred) {
|
|
typedef typename std::iterator_traits<ForwardIterator>::iterator_category* category;
|
|
return sprout::detail::adjacent_find(first, last, pred, category());
|
|
}
|
|
|
|
template<typename ForwardIterator>
|
|
inline SPROUT_CONSTEXPR ForwardIterator
|
|
adjacent_find(ForwardIterator first, ForwardIterator last) {
|
|
return sprout::adjacent_find(
|
|
first, last,
|
|
NS_SSCRISK_CEL_OR_SPROUT::equal_to<typename std::iterator_traits<ForwardIterator>::value_type>()
|
|
);
|
|
}
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_ADJACENT_FIND_HPP
|