/*============================================================================= 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_DETAIL_ALGORITHM_COUNT_N_IF_HPP #define SPROUT_DETAIL_ALGORITHM_COUNT_N_IF_HPP #include #include #include #include #include #include #include #include namespace sprout { namespace detail { template inline SPROUT_CONSTEXPR typename std::enable_if< sprout::is_constant_distance_iterator::pred, typename std::iterator_traits::difference_type >::type count_n_if( RandomAccessIterator first, typename std::iterator_traits::difference_type n, Predicate pred, std::random_access_iterator_tag* ) { return sprout::count(first, sprout::next(first, n), pred); } template inline SPROUT_CONSTEXPR sprout::pair::difference_type> count_n_if_impl( sprout::pair::difference_type> const& current, Predicate pred, typename std::iterator_traits::difference_type n ) { typedef sprout::pair::difference_type> type; return n == 1 ? type(sprout::next(current.first), current.second + (pred(*current.first) ? 1 : 0)) : sprout::detail::count_n_if_impl( sprout::detail::count_n_if_impl( current, pred, n / 2 ), pred, n - n / 2 ) ; } template inline SPROUT_CONSTEXPR typename std::iterator_traits::difference_type count_n_if( InputIterator first, typename std::iterator_traits::difference_type n, Predicate pred, std::input_iterator_tag* ) { typedef sprout::pair::difference_type> type; return n == 0 ? 0 : sprout::detail::count_n_if_impl(type(first, 0), pred, n).second ; } // // count_n_if // // recursion depth: // O(log N) // template inline SPROUT_CONSTEXPR typename std::iterator_traits::difference_type count_n_if(InputIterator first, typename std::iterator_traits::difference_type n, Predicate pred) { typedef typename std::iterator_traits::iterator_category* category; return sprout::detail::count_n_if(first, n, pred, category()); } } // namespace detail } // namespace sprout #endif // #ifndef SPROUT_DETAIL_ALGORITHM_COUNT_N_IF_HPP