#ifndef SPROUT_DETAIL_ALGORITHM_COUNT_N_HPP #define SPROUT_DETAIL_ALGORITHM_COUNT_N_HPP #include #include #include #include #include #include #include namespace sprout { namespace detail { template inline SPROUT_CONSTEXPR typename std::enable_if< sprout::is_constant_distance_iterator::value, typename std::iterator_traits::difference_type >::type count_n( RandomAccessIterator first, typename std::iterator_traits::difference_type n, T const& value, std::random_access_iterator_tag* ) { return sprout::count(first, sprout::next(first, n), value); } template inline SPROUT_CONSTEXPR sprout::pair::difference_type> count_n_impl( sprout::pair::difference_type> const& current, T const& value, typename std::iterator_traits::difference_type n ) { typedef sprout::pair::difference_type> type; return n == 1 ? type(sprout::next(current.first), current.second + (*current.first == value ? 1 : 0)) : sprout::detail::count_n_impl( sprout::detail::count_n_impl( current, value, n / 2 ), value, n - n / 2 ) ; } template inline SPROUT_CONSTEXPR typename std::iterator_traits::difference_type count_n( InputIterator first, typename std::iterator_traits::difference_type n, T const& value, std::input_iterator_tag* ) { typedef sprout::pair::difference_type> type; return n == 0 ? 0 : sprout::detail::count_n_impl(type(first, 0), value, n).second ; } // // count_n // // recursion depth: // O(log N) // template inline SPROUT_CONSTEXPR typename std::iterator_traits::difference_type count_n(InputIterator first, typename std::iterator_traits::difference_type n, T const& value) { typedef typename std::iterator_traits::iterator_category* category; return sprout::detail::count_n(first, n, value, category()); } } // namespace detail } // namespace sprout #endif // #ifndef SPROUT_DETAIL_ALGORITHM_COUNT_N_HPP