/*============================================================================= Copyright (c) 2011-2013 Bolero MURAKAMI https://github.com/bolero-MURAKAMI/Sprout Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) =============================================================================*/ #ifndef SPROUT_ALGORITHM_ONE_OF_HPP #define SPROUT_ALGORITHM_ONE_OF_HPP #include #include #include #include #include #include namespace sprout { namespace detail { template inline SPROUT_CONSTEXPR bool one_of_impl_ra_1( RandomAccessIterator first, RandomAccessIterator last, Predicate pred, typename std::iterator_traits::difference_type pivot ) { return pivot == 0 ? !pred(*first) : sprout::detail::one_of_impl_ra_1( first, sprout::next(first, pivot), pred, pivot / 2 ) && sprout::detail::one_of_impl_ra_1( sprout::next(first, pivot), last, pred, (sprout::distance(first, last) - pivot) / 2 ) ; } template inline SPROUT_CONSTEXPR bool one_of_impl_ra( RandomAccessIterator first, RandomAccessIterator last, Predicate pred, typename std::iterator_traits::difference_type pivot ) { return pivot == 0 ? pred(*first) : sprout::detail::one_of_impl_ra( first, sprout::next(first, pivot), pred, pivot / 2 ) ? sprout::detail::one_of_impl_ra_1( sprout::next(first, pivot), last, pred, (sprout::distance(first, last) - pivot) / 2 ) : sprout::detail::one_of_impl_ra( sprout::next(first, pivot), last, pred, (sprout::distance(first, last) - pivot) / 2 ) ; } template inline SPROUT_CONSTEXPR typename std::enable_if< sprout::is_constant_distance_iterator::value, bool >::type one_of( RandomAccessIterator first, RandomAccessIterator last, Predicate pred, std::random_access_iterator_tag* ) { return first == last ? true : sprout::detail::one_of_impl_ra(first, last, pred, sprout::distance(first, last) / 2) ; } template inline SPROUT_CONSTEXPR sprout::pair::difference_type> one_of_impl_1( sprout::pair::difference_type> const& current, InputIterator last, Predicate pred, typename std::iterator_traits::difference_type n ) { typedef sprout::pair::difference_type> type; return current.second > 1 || current.first == last ? current : n == 1 ? current.second == 0 ? !pred(*current.first) ? type(sprout::next(current.first), 0) : type(sprout::next(current.first), 1) : !pred(*current.first) ? type(sprout::next(current.first), 1) : type(current.first, 2) : sprout::detail::one_of_impl_1( sprout::detail::one_of_impl_1( current, last, pred, n / 2 ), last, pred, n - n / 2 ) ; } template inline SPROUT_CONSTEXPR sprout::pair::difference_type> one_of_impl( sprout::pair::difference_type> const& current, InputIterator last, Predicate pred, typename std::iterator_traits::difference_type n ) { return current.second > 1 || current.first == last ? current : sprout::detail::one_of_impl( sprout::detail::one_of_impl_1( current, last, pred, n ), last, pred, n * 2 ) ; } template inline SPROUT_CONSTEXPR bool one_of( InputIterator first, InputIterator last, Predicate pred, std::input_iterator_tag* ) { typedef sprout::pair::difference_type> type; return sprout::detail::one_of_impl(type(first, 0), last, pred, 1).second == 1; } } // namespace detail // // one_of // // recursion depth: // O(log N) // template inline SPROUT_CONSTEXPR bool one_of(InputIterator first, InputIterator last, Predicate pred) { typedef typename std::iterator_traits::iterator_category* category; return sprout::detail::one_of(first, last, pred, category()); } } // namespace sprout #endif // #ifndef SPROUT_ALGORITHM_ONE_OF_HPP