#ifndef SPROUT_ALGORITHM_ADJACENT_FIND_HPP #define SPROUT_ALGORITHM_ADJACENT_FIND_HPP #include #include #include #include #include #include #include HDR_FUNCTIONAL_SSCRISK_CEL_OR_SPROUT namespace sprout { namespace detail { template inline SPROUT_CONSTEXPR RandomAccessIterator adjacent_find_impl_check_ra(RandomAccessIterator found, RandomAccessIterator last) { return sprout::distance(found, last) == 1 ? last : found ; } template inline SPROUT_CONSTEXPR RandomAccessIterator adjacent_find_impl_ra( RandomAccessIterator first, RandomAccessIterator last, BinaryPredicate pred, typename std::iterator_traits::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 inline SPROUT_CONSTEXPR typename std::enable_if< sprout::is_constant_distance_iterator::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 inline SPROUT_CONSTEXPR ForwardIterator adjacent_find_impl_check(ForwardIterator found, ForwardIterator last) { return sprout::next(found) == last ? last : found ; } template inline SPROUT_CONSTEXPR sprout::pair adjacent_find_impl_1( sprout::pair const& current, ForwardIterator last, BinaryPredicate pred, typename std::iterator_traits::difference_type n ) { typedef sprout::pair 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 inline SPROUT_CONSTEXPR sprout::pair adjacent_find_impl( sprout::pair const& current, ForwardIterator last, BinaryPredicate pred, typename std::iterator_traits::difference_type n ) { typedef sprout::pair 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 inline SPROUT_CONSTEXPR ForwardIterator adjacent_find( ForwardIterator first, ForwardIterator last, BinaryPredicate pred, void* ) { typedef sprout::pair 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 inline SPROUT_CONSTEXPR ForwardIterator adjacent_find(ForwardIterator first, ForwardIterator last, BinaryPredicate pred) { typedef typename std::iterator_traits::iterator_category* category; return sprout::detail::adjacent_find(first, last, pred, category()); } template inline SPROUT_CONSTEXPR ForwardIterator adjacent_find(ForwardIterator first, ForwardIterator last) { return sprout::adjacent_find( first, last, NS_SSCRISK_CEL_OR_SPROUT::equal_to::value_type>() ); } } // namespace sprout #endif // #ifndef SPROUT_ALGORITHM_ADJACENT_FIND_HPP