2012-06-23 23:22:12 +00:00
|
|
|
#ifndef SPROUT_DETAIL_ALGORITHM_OVERLAP_COUNT_HPP
|
|
|
|
#define SPROUT_DETAIL_ALGORITHM_OVERLAP_COUNT_HPP
|
2011-09-01 02:48:32 +00:00
|
|
|
|
|
|
|
#include <iterator>
|
|
|
|
#include <sprout/config.hpp>
|
2011-10-01 15:19:13 +00:00
|
|
|
#include <sprout/iterator/operation.hpp>
|
2012-12-17 11:10:17 +00:00
|
|
|
#include HDR_ITERATOR_SSCRISK_CEL_OR_SPROUT
|
2012-12-16 17:14:07 +00:00
|
|
|
#include HDR_FUNCTIONAL_SSCRISK_CEL_OR_SPROUT
|
2011-09-01 02:48:32 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace detail {
|
2012-12-17 11:10:17 +00:00
|
|
|
template<typename RandomAccessIterator, typename BinaryPredicate>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::iterator_traits<RandomAccessIterator>::difference_type
|
|
|
|
overlap_count_impl_ra(
|
|
|
|
RandomAccessIterator first, RandomAccessIterator last, BinaryPredicate pred,
|
|
|
|
typename std::iterator_traits<RandomAccessIterator>::difference_type pivot
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return pivot == 0 ? (pred(*first, *last) ? 1 : 0)
|
|
|
|
: sprout::detail::overlap_count_impl_ra(
|
|
|
|
first, sprout::next(first, pivot), pred,
|
|
|
|
pivot / 2
|
|
|
|
)
|
|
|
|
+ sprout::detail::overlap_count_impl_ra(
|
|
|
|
sprout::next(first, pivot), last, pred,
|
|
|
|
(NS_SSCRISK_CEL_OR_SPROUT::distance(first, last) - pivot) / 2
|
|
|
|
)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename RandomAccessIterator, typename BinaryPredicate>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::iterator_traits<RandomAccessIterator>::difference_type
|
|
|
|
overlap_count(
|
|
|
|
RandomAccessIterator first, RandomAccessIterator last, BinaryPredicate pred,
|
|
|
|
std::random_access_iterator_tag*
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return first == last || NS_SSCRISK_CEL_OR_SPROUT::distance(first, last) == 1 ? 0
|
|
|
|
: sprout::detail::overlap_count_impl_ra(
|
|
|
|
first, sprout::next(first, NS_SSCRISK_CEL_OR_SPROUT::distance(first, last) - 1), pred,
|
|
|
|
(NS_SSCRISK_CEL_OR_SPROUT::distance(first, last) - 1) / 2
|
|
|
|
)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
2012-12-16 17:14:07 +00:00
|
|
|
template<typename InputIterator, typename BinaryPredicate>
|
2012-10-05 15:58:56 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename std::iterator_traits<InputIterator>::difference_type
|
|
|
|
overlap_count_impl(
|
2012-12-17 11:10:17 +00:00
|
|
|
InputIterator first, InputIterator last, BinaryPredicate pred,
|
|
|
|
typename std::iterator_traits<InputIterator>::value_type const& value
|
2011-09-01 02:48:32 +00:00
|
|
|
)
|
|
|
|
{
|
2012-10-05 15:58:56 +00:00
|
|
|
return first == last ? 0
|
|
|
|
: pred(*first, value) ? 1 + sprout::detail::overlap_count_impl(sprout::next(first), last, pred, value)
|
2011-10-01 15:19:13 +00:00
|
|
|
: sprout::detail::overlap_count_impl(sprout::next(first), last, pred, *first)
|
2011-09-01 02:48:32 +00:00
|
|
|
;
|
|
|
|
}
|
2012-12-17 11:10:17 +00:00
|
|
|
template<typename InputIterator, typename BinaryPredicate>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::iterator_traits<InputIterator>::difference_type
|
|
|
|
overlap_count_impl(
|
|
|
|
InputIterator first, InputIterator last, BinaryPredicate pred,
|
|
|
|
void*
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return first == last ? 0
|
|
|
|
: sprout::detail::overlap_count_impl(sprout::next(first), last, pred, *first)
|
|
|
|
;
|
|
|
|
}
|
2012-12-16 17:14:07 +00:00
|
|
|
|
2011-09-01 02:48:32 +00:00
|
|
|
//
|
|
|
|
// overlap_count
|
|
|
|
//
|
2012-12-16 17:14:07 +00:00
|
|
|
template<typename InputIterator, typename BinaryPredicate>
|
2012-10-05 15:58:56 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename std::iterator_traits<InputIterator>::difference_type
|
2012-12-16 17:14:07 +00:00
|
|
|
overlap_count(InputIterator first, InputIterator last, BinaryPredicate pred) {
|
2012-12-17 11:10:17 +00:00
|
|
|
typedef typename std::iterator_traits<InputIterator>::iterator_category* category;
|
|
|
|
return sprout::detail::overlap_count(first, last, pred, category());
|
2011-09-01 02:48:32 +00:00
|
|
|
}
|
2012-12-16 17:14:07 +00:00
|
|
|
|
|
|
|
template<typename InputIterator>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::iterator_traits<InputIterator>::difference_type
|
|
|
|
overlap_count(InputIterator first, InputIterator last) {
|
|
|
|
return sprout::detail::overlap_count(
|
|
|
|
first, last,
|
|
|
|
NS_SSCRISK_CEL_OR_SPROUT::equal_to<typename std::iterator_traits<InputIterator>::value_type>()
|
|
|
|
);
|
|
|
|
}
|
2011-09-01 02:48:32 +00:00
|
|
|
} // namespace detail
|
|
|
|
} // namespace sprout
|
|
|
|
|
2012-06-23 23:22:12 +00:00
|
|
|
#endif // #ifndef SPROUT_DETAIL_ALGORITHM_OVERLAP_COUNT_HPP
|