/*============================================================================= Copyright (c) 2011-2016 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_COUNT_IF_HPP #define SPROUT_ALGORITHM_COUNT_IF_HPP #include #include #include #include #include #include namespace sprout { namespace detail { template inline SPROUT_CONSTEXPR typename std::iterator_traits::difference_type count_if_impl_ra( RandomAccessIterator const& first, Predicate pred, typename std::iterator_traits::difference_type size ) { return size == 1 ? (pred(*first) ? 1 : 0) : sprout::detail::count_if_impl_ra( first, pred, size / 2 ) + sprout::detail::count_if_impl_ra( sprout::next(first, size / 2), pred, size - size / 2 ) ; } template inline SPROUT_CONSTEXPR typename std::enable_if< sprout::is_constant_distance_iterator::value, typename std::iterator_traits::difference_type >::type count_if( RandomAccessIterator const& first, RandomAccessIterator const& last, Predicate pred, std::random_access_iterator_tag* ) { return first == last ? 0 : sprout::detail::count_if_impl_ra(first, pred, sprout::distance(first, last)) ; } template inline SPROUT_CONSTEXPR sprout::pair::difference_type> count_if_impl_1( sprout::pair::difference_type> const& current, InputIterator const& last, Predicate pred, typename std::iterator_traits::difference_type n ) { typedef sprout::pair::difference_type> type; return current.first == last ? current : n == 1 ? type(sprout::next(current.first), current.second + (pred(*current.first) ? 1 : 0)) : sprout::detail::count_if_impl_1( sprout::detail::count_if_impl_1( current, last, pred, n / 2 ), last, pred, n - n / 2 ) ; } template inline SPROUT_CONSTEXPR sprout::pair::difference_type> count_if_impl( sprout::pair::difference_type> const& current, InputIterator const& last, Predicate pred, typename std::iterator_traits::difference_type n ) { return current.first == last ? current : sprout::detail::count_if_impl( sprout::detail::count_if_impl_1( current, last, pred, n ), last, pred, n * 2 ) ; } template inline SPROUT_CONSTEXPR typename std::iterator_traits::difference_type count_if( InputIterator const& first, InputIterator const& last, Predicate pred, std::input_iterator_tag* ) { typedef sprout::pair::difference_type> type; return sprout::detail::count_if_impl(type(first, 0), last, pred, 1).second; } } // namespace detail // 25.2.9 Count // // recursion depth: // O(log N) // template inline SPROUT_CONSTEXPR typename std::iterator_traits::difference_type count_if(InputIterator first, InputIterator last, Predicate pred) { typedef typename std::iterator_traits::iterator_category* category; return sprout::detail::count_if(first, last, pred, category()); } } // namespace sprout #endif // #ifndef SPROUT_ALGORITHM_COUNT_IF_HPP