2012-04-01 13:15:09 +00:00
|
|
|
#ifndef SPROUT_ALGORITHM_COUNT_IF_HPP
|
|
|
|
#define SPROUT_ALGORITHM_COUNT_IF_HPP
|
|
|
|
|
|
|
|
#include <iterator>
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/iterator/operation.hpp>
|
2012-12-11 16:47:14 +00:00
|
|
|
#include HDR_ITERATOR_SSCRISK_CEL_OR_SPROUT
|
2012-04-01 13:15:09 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
2012-12-11 16:47:14 +00:00
|
|
|
namespace detail {
|
|
|
|
template<typename RandomAccessIterator, typename Predicate>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::iterator_traits<RandomAccessIterator>::difference_type
|
|
|
|
count_if_impl_ra(
|
|
|
|
RandomAccessIterator first, RandomAccessIterator last, Predicate pred,
|
|
|
|
typename std::iterator_traits<RandomAccessIterator>::difference_type pivot
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return pivot == 0 ? (pred(*first) ? 1 : 0)
|
|
|
|
: sprout::detail::count_if_impl_ra(
|
|
|
|
first, sprout::next(first, pivot), pred,
|
|
|
|
pivot / 2
|
|
|
|
)
|
|
|
|
+ sprout::detail::count_if_impl_ra(
|
|
|
|
sprout::next(first, pivot), last, pred,
|
|
|
|
(NS_SSCRISK_CEL_OR_SPROUT::distance(first, last) - pivot) / 2
|
|
|
|
)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename RandomAccessIterator, typename Predicate>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::iterator_traits<RandomAccessIterator>::difference_type
|
|
|
|
count_if(
|
|
|
|
RandomAccessIterator first, RandomAccessIterator last, Predicate pred,
|
|
|
|
std::random_access_iterator_tag*
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return first == last ? 0
|
|
|
|
: sprout::detail::count_if_impl_ra(first, last, pred, NS_SSCRISK_CEL_OR_SPROUT::distance(first, last) / 2)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Copyright (C) 2011 RiSK (sscrisk)
|
|
|
|
template<typename InputIterator, typename Predicate>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::iterator_traits<InputIterator>::difference_type
|
|
|
|
count_if_impl(InputIterator first, InputIterator last, Predicate pred) {
|
|
|
|
return first == last ? 0
|
|
|
|
: (pred(*first) ? 1 : 0) + sprout::detail::count_if_impl(sprout::next(first), last, pred)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename InputIterator, typename Predicate>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::iterator_traits<InputIterator>::difference_type
|
|
|
|
count_if(
|
|
|
|
InputIterator first, InputIterator last, Predicate pred,
|
|
|
|
void*
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return sprout::detail::count_if_impl(first, last, pred);
|
|
|
|
}
|
|
|
|
} //namespace detail
|
2012-04-01 13:15:09 +00:00
|
|
|
|
|
|
|
// 25.2.9 Count
|
2012-12-12 08:46:36 +00:00
|
|
|
//
|
|
|
|
// recursion depth:
|
|
|
|
// [first, last) is RandomAccessIterator -> O(log N)
|
|
|
|
// otherwise -> O(N)
|
|
|
|
//
|
2012-04-01 13:15:09 +00:00
|
|
|
template<typename InputIterator, typename Predicate>
|
2012-04-04 13:23:41 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename std::iterator_traits<InputIterator>::difference_type
|
2012-04-01 13:15:09 +00:00
|
|
|
count_if(InputIterator first, InputIterator last, Predicate pred) {
|
2012-12-11 16:47:14 +00:00
|
|
|
typedef typename std::iterator_traits<InputIterator>::iterator_category* category;
|
|
|
|
return sprout::detail::count_if(first, last, pred, category());
|
2012-04-01 13:15:09 +00:00
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_COUNT_IF_HPP
|