2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2014-01-08 07:48:12 +00:00
|
|
|
Copyright (c) 2011-2014 Bolero MURAKAMI
|
2013-08-08 09:54:33 +00:00
|
|
|
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)
|
|
|
|
=============================================================================*/
|
2012-06-23 23:22:12 +00:00
|
|
|
#ifndef SPROUT_DETAIL_ALGORITHM_COUNT_N_IF_HPP
|
|
|
|
#define SPROUT_DETAIL_ALGORITHM_COUNT_N_IF_HPP
|
2012-06-23 04:22:50 +00:00
|
|
|
|
|
|
|
#include <iterator>
|
2013-01-03 08:01:50 +00:00
|
|
|
#include <type_traits>
|
2012-06-23 04:22:50 +00:00
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/iterator/operation.hpp>
|
2013-02-26 07:14:04 +00:00
|
|
|
#include <sprout/iterator/type_traits/category.hpp>
|
2013-02-07 14:12:57 +00:00
|
|
|
#include <sprout/utility/pair/pair.hpp>
|
2013-11-27 17:10:47 +00:00
|
|
|
#include <sprout/algorithm/count.hpp>
|
2012-12-16 17:14:07 +00:00
|
|
|
#include <sprout/algorithm/count_if.hpp>
|
2012-06-23 04:22:50 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace detail {
|
2013-01-03 08:01:50 +00:00
|
|
|
template<typename RandomAccessIterator, typename Predicate>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
sprout::is_constant_distance_iterator<RandomAccessIterator>::pred,
|
|
|
|
typename std::iterator_traits<RandomAccessIterator>::difference_type
|
|
|
|
>::type
|
2012-12-16 17:14:07 +00:00
|
|
|
count_n_if(
|
2013-01-03 08:01:50 +00:00
|
|
|
RandomAccessIterator first, typename std::iterator_traits<RandomAccessIterator>::difference_type n, Predicate pred,
|
2012-12-16 17:14:07 +00:00
|
|
|
std::random_access_iterator_tag*
|
|
|
|
)
|
|
|
|
{
|
2013-01-03 08:01:50 +00:00
|
|
|
return sprout::count(first, sprout::next(first, n), pred);
|
2012-12-16 17:14:07 +00:00
|
|
|
}
|
|
|
|
|
2013-01-03 08:01:50 +00:00
|
|
|
template<typename InputIterator, typename Predicate>
|
|
|
|
inline SPROUT_CONSTEXPR sprout::pair<InputIterator, typename std::iterator_traits<InputIterator>::difference_type>
|
|
|
|
count_n_if_impl(
|
|
|
|
sprout::pair<InputIterator, typename std::iterator_traits<InputIterator>::difference_type> const& current,
|
|
|
|
Predicate pred, typename std::iterator_traits<InputIterator>::difference_type n
|
|
|
|
)
|
|
|
|
{
|
|
|
|
typedef sprout::pair<InputIterator, typename std::iterator_traits<InputIterator>::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
|
|
|
|
)
|
2012-12-16 17:14:07 +00:00
|
|
|
;
|
|
|
|
}
|
2013-01-03 08:01:50 +00:00
|
|
|
template<typename InputIterator, typename Predicate>
|
2012-12-16 17:14:07 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename std::iterator_traits<InputIterator>::difference_type
|
|
|
|
count_n_if(
|
2013-01-03 08:01:50 +00:00
|
|
|
InputIterator first, typename std::iterator_traits<InputIterator>::difference_type n, Predicate pred,
|
2013-02-23 06:21:27 +00:00
|
|
|
std::input_iterator_tag*
|
2012-12-16 17:14:07 +00:00
|
|
|
)
|
|
|
|
{
|
2013-01-03 08:01:50 +00:00
|
|
|
typedef sprout::pair<InputIterator, typename std::iterator_traits<InputIterator>::difference_type> type;
|
|
|
|
return n == 0 ? 0
|
|
|
|
: sprout::detail::count_n_if_impl(type(first, 0), pred, n).second
|
|
|
|
;
|
2012-12-16 17:14:07 +00:00
|
|
|
}
|
|
|
|
|
2012-06-23 04:22:50 +00:00
|
|
|
//
|
|
|
|
// count_n_if
|
|
|
|
//
|
2013-01-03 08:01:50 +00:00
|
|
|
// recursion depth:
|
|
|
|
// O(log N)
|
|
|
|
//
|
|
|
|
template<typename InputIterator, typename Predicate>
|
2012-10-05 15:58:56 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename std::iterator_traits<InputIterator>::difference_type
|
2013-01-03 08:01:50 +00:00
|
|
|
count_n_if(InputIterator first, typename std::iterator_traits<InputIterator>::difference_type n, Predicate pred) {
|
2012-12-16 17:14:07 +00:00
|
|
|
typedef typename std::iterator_traits<InputIterator>::iterator_category* category;
|
|
|
|
return sprout::detail::count_n_if(first, n, pred, category());
|
|
|
|
|
2012-06-23 04:22:50 +00:00
|
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
} // namespace sprout
|
|
|
|
|
2012-06-23 23:22:12 +00:00
|
|
|
#endif // #ifndef SPROUT_DETAIL_ALGORITHM_COUNT_N_IF_HPP
|