2012-04-01 13:15:09 +00:00
|
|
|
#ifndef SPROUT_ALGORITHM_COUNT_HPP
|
|
|
|
#define SPROUT_ALGORITHM_COUNT_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 T>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::iterator_traits<RandomAccessIterator>::difference_type
|
|
|
|
count_impl_ra(
|
|
|
|
RandomAccessIterator first, RandomAccessIterator last, T const& value,
|
|
|
|
typename std::iterator_traits<RandomAccessIterator>::difference_type pivot
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return pivot == 0 ? (*first == value ? 1 : 0)
|
|
|
|
: sprout::detail::count_impl_ra(
|
|
|
|
first, sprout::next(first, pivot), value,
|
|
|
|
pivot / 2
|
|
|
|
)
|
|
|
|
+ sprout::detail::count_impl_ra(
|
|
|
|
sprout::next(first, pivot), last, value,
|
|
|
|
(NS_SSCRISK_CEL_OR_SPROUT::distance(first, last) - pivot) / 2
|
|
|
|
)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename RandomAccessIterator, typename T>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::iterator_traits<RandomAccessIterator>::difference_type
|
|
|
|
count(
|
|
|
|
RandomAccessIterator first, RandomAccessIterator last, T const& value,
|
|
|
|
std::random_access_iterator_tag*
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return first == last ? 0
|
|
|
|
: sprout::detail::count_impl_ra(first, last, value, NS_SSCRISK_CEL_OR_SPROUT::distance(first, last) / 2)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Copyright (C) 2011 RiSK (sscrisk)
|
|
|
|
template<typename InputIterator, typename T>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::iterator_traits<InputIterator>::difference_type
|
|
|
|
count_impl(InputIterator first, InputIterator last, T const& value) {
|
|
|
|
return first == last ? 0
|
|
|
|
: (*first == value ? 1 : 0) + sprout::detail::count_impl(sprout::next(first), last, value)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename InputIterator, typename T>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::iterator_traits<InputIterator>::difference_type
|
|
|
|
count(
|
|
|
|
InputIterator first, InputIterator last, T const& value,
|
|
|
|
void*
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return sprout::detail::count_impl(first, last, value);
|
|
|
|
}
|
|
|
|
} //namespace detail
|
2012-04-01 13:15:09 +00:00
|
|
|
|
|
|
|
// 25.2.9 Count
|
|
|
|
template<typename InputIterator, typename T>
|
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(InputIterator first, InputIterator last, T const& value) {
|
2012-12-11 16:47:14 +00:00
|
|
|
typedef typename std::iterator_traits<InputIterator>::iterator_category* category;
|
|
|
|
return sprout::detail::count(first, last, value, category());
|
2012-04-01 13:15:09 +00:00
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_COUNT_HPP
|