2012-04-01 13:15:09 +00:00
|
|
|
#ifndef SPROUT_ALGORITHM_ADJACENT_FIND_HPP
|
|
|
|
#define SPROUT_ALGORITHM_ADJACENT_FIND_HPP
|
|
|
|
|
|
|
|
#include <iterator>
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/iterator/operation.hpp>
|
2013-01-03 08:01:50 +00:00
|
|
|
#include <sprout/iterator/type_traits/is_iterator.hpp>
|
|
|
|
#include <sprout/tuple/tuple.hpp>
|
2012-04-01 13:15:09 +00:00
|
|
|
#include HDR_FUNCTIONAL_SSCRISK_CEL_OR_SPROUT
|
|
|
|
|
|
|
|
namespace sprout {
|
2012-12-11 03:59:36 +00:00
|
|
|
namespace detail {
|
|
|
|
template<typename RandomAccessIterator>
|
|
|
|
inline SPROUT_CONSTEXPR RandomAccessIterator
|
2013-01-03 08:01:50 +00:00
|
|
|
adjacent_find_impl_check_ra(RandomAccessIterator found, RandomAccessIterator last) {
|
|
|
|
return sprout::distance(found, last) == 1 ? last
|
2012-12-11 03:59:36 +00:00
|
|
|
: found
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename RandomAccessIterator, typename BinaryPredicate>
|
|
|
|
inline SPROUT_CONSTEXPR RandomAccessIterator
|
|
|
|
adjacent_find_impl_ra(
|
|
|
|
RandomAccessIterator first, RandomAccessIterator last, BinaryPredicate pred,
|
|
|
|
typename std::iterator_traits<RandomAccessIterator>::difference_type pivot, RandomAccessIterator found
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return found != first ? found
|
|
|
|
: pivot == 0 ? (pred(*first, *last) ? first : last)
|
|
|
|
: sprout::detail::adjacent_find_impl_ra(
|
|
|
|
sprout::next(first, pivot), last, pred,
|
2013-01-03 08:01:50 +00:00
|
|
|
(sprout::distance(first, last) - pivot) / 2,
|
2012-12-11 03:59:36 +00:00
|
|
|
sprout::detail::adjacent_find_impl_ra(
|
|
|
|
first, sprout::next(first, pivot), pred,
|
|
|
|
pivot / 2,
|
|
|
|
first
|
|
|
|
)
|
|
|
|
)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename RandomAccessIterator, typename BinaryPredicate>
|
2013-01-03 08:01:50 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
sprout::is_constant_distance_iterator<RandomAccessIterator>::value,
|
|
|
|
RandomAccessIterator
|
|
|
|
>::type
|
2012-12-11 03:59:36 +00:00
|
|
|
adjacent_find(
|
|
|
|
RandomAccessIterator first, RandomAccessIterator last, BinaryPredicate pred,
|
|
|
|
std::random_access_iterator_tag*
|
|
|
|
)
|
|
|
|
{
|
2013-01-03 08:01:50 +00:00
|
|
|
return first == last || sprout::distance(first, last) == 1 ? last
|
|
|
|
: adjacent_find_impl_check_ra(
|
2012-12-11 03:59:36 +00:00
|
|
|
sprout::detail::adjacent_find_impl_ra(
|
2013-01-03 08:01:50 +00:00
|
|
|
first, sprout::next(first, sprout::distance(first, last) - 1), pred,
|
|
|
|
(sprout::distance(first, last) - 1) / 2, first
|
2012-12-11 03:59:36 +00:00
|
|
|
),
|
|
|
|
last
|
|
|
|
)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
2013-01-03 08:01:50 +00:00
|
|
|
template<typename ForwardIterator>
|
2012-12-11 03:59:36 +00:00
|
|
|
inline SPROUT_CONSTEXPR ForwardIterator
|
2013-01-03 08:01:50 +00:00
|
|
|
adjacent_find_impl_check(sprout::tuples::tuple<ForwardIterator, ForwardIterator, bool> const& current) {
|
|
|
|
return !sprout::tuples::get<2>(current) ? sprout::tuples::get<1>(current)
|
|
|
|
: sprout::tuples::get<0>(current)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename ForwardIterator, typename BinaryPredicate>
|
|
|
|
inline SPROUT_CONSTEXPR sprout::tuples::tuple<ForwardIterator, ForwardIterator, bool>
|
|
|
|
adjacent_find_impl_1(
|
|
|
|
sprout::tuples::tuple<ForwardIterator, ForwardIterator, bool> const& current,
|
|
|
|
ForwardIterator last, BinaryPredicate pred, typename std::iterator_traits<ForwardIterator>::difference_type n
|
|
|
|
)
|
|
|
|
{
|
|
|
|
typedef sprout::tuples::tuple<ForwardIterator, ForwardIterator, bool> type;
|
|
|
|
return sprout::tuples::get<2>(current) || sprout::tuples::get<1>(current) == last ? current
|
|
|
|
: n == 1 ? pred(*sprout::tuples::get<0>(current), *sprout::tuples::get<1>(current))
|
|
|
|
? type(sprout::tuples::get<0>(current), sprout::tuples::get<1>(current), true)
|
|
|
|
: type(sprout::tuples::get<1>(current), sprout::next(sprout::tuples::get<1>(current)), false)
|
|
|
|
: sprout::detail::adjacent_find_impl_1(
|
|
|
|
sprout::detail::adjacent_find_impl_1(
|
|
|
|
current,
|
|
|
|
last, pred, n / 2
|
|
|
|
),
|
|
|
|
last, pred, n - n / 2
|
|
|
|
)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename ForwardIterator, typename BinaryPredicate>
|
|
|
|
inline SPROUT_CONSTEXPR sprout::tuples::tuple<ForwardIterator, ForwardIterator, bool>
|
|
|
|
adjacent_find_impl(
|
|
|
|
sprout::tuples::tuple<ForwardIterator, ForwardIterator, bool> const& current,
|
|
|
|
ForwardIterator last, BinaryPredicate pred, typename std::iterator_traits<ForwardIterator>::difference_type n
|
|
|
|
)
|
|
|
|
{
|
|
|
|
typedef sprout::tuples::tuple<ForwardIterator, ForwardIterator, bool> type;
|
|
|
|
return sprout::tuples::get<2>(current) || sprout::tuples::get<1>(current) == last ? current
|
|
|
|
: sprout::detail::adjacent_find_impl(
|
|
|
|
sprout::detail::adjacent_find_impl_1(
|
|
|
|
current,
|
|
|
|
last, pred, n
|
|
|
|
),
|
|
|
|
last, pred, n * 2
|
|
|
|
)
|
2012-12-11 03:59:36 +00:00
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename ForwardIterator, typename BinaryPredicate>
|
|
|
|
inline SPROUT_CONSTEXPR ForwardIterator
|
|
|
|
adjacent_find(
|
|
|
|
ForwardIterator first, ForwardIterator last, BinaryPredicate pred,
|
|
|
|
void*
|
|
|
|
)
|
|
|
|
{
|
2013-01-03 08:01:50 +00:00
|
|
|
typedef sprout::tuples::tuple<ForwardIterator, ForwardIterator, bool> type;
|
2012-12-11 03:59:36 +00:00
|
|
|
return first == last ? last
|
2013-01-03 08:01:50 +00:00
|
|
|
: sprout::detail::adjacent_find_impl_check(
|
|
|
|
sprout::detail::adjacent_find_impl(type(first, sprout::next(first), false), last, pred, 1)
|
|
|
|
)
|
2012-12-11 03:59:36 +00:00
|
|
|
;
|
|
|
|
}
|
|
|
|
} //namespace detail
|
2012-04-01 13:15:09 +00:00
|
|
|
|
|
|
|
// 25.2.8 Adjacent find
|
2012-12-12 08:46:36 +00:00
|
|
|
//
|
|
|
|
// recursion depth:
|
2013-01-03 08:01:50 +00:00
|
|
|
// O(log N)
|
2012-12-12 08:46:36 +00:00
|
|
|
//
|
2012-04-01 13:15:09 +00:00
|
|
|
template<typename ForwardIterator, typename BinaryPredicate>
|
2012-10-06 04:53:07 +00:00
|
|
|
inline SPROUT_CONSTEXPR ForwardIterator
|
|
|
|
adjacent_find(ForwardIterator first, ForwardIterator last, BinaryPredicate pred) {
|
2012-12-11 03:59:36 +00:00
|
|
|
typedef typename std::iterator_traits<ForwardIterator>::iterator_category* category;
|
|
|
|
return sprout::detail::adjacent_find(first, last, pred, category());
|
2012-04-01 13:15:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename ForwardIterator>
|
2012-10-06 04:53:07 +00:00
|
|
|
inline SPROUT_CONSTEXPR ForwardIterator
|
|
|
|
adjacent_find(ForwardIterator first, ForwardIterator last) {
|
2012-04-01 13:15:09 +00:00
|
|
|
return sprout::adjacent_find(
|
2012-10-06 04:53:07 +00:00
|
|
|
first, last,
|
2012-04-01 13:15:09 +00:00
|
|
|
NS_SSCRISK_CEL_OR_SPROUT::equal_to<typename std::iterator_traits<ForwardIterator>::value_type>()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_ADJACENT_FIND_HPP
|