2012-04-01 13:15:09 +00:00
|
|
|
#ifndef SPROUT_ALGORITHM_EQUAL_HPP
|
|
|
|
#define SPROUT_ALGORITHM_EQUAL_HPP
|
|
|
|
|
2012-12-11 16:47:14 +00:00
|
|
|
#include <iterator>
|
2013-01-03 08:38:45 +00:00
|
|
|
#include <type_traits>
|
2012-04-01 13:15:09 +00:00
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/iterator/operation.hpp>
|
2012-12-21 14:12:54 +00:00
|
|
|
#include <sprout/iterator/type_traits/common.hpp>
|
2013-02-07 14:12:57 +00:00
|
|
|
#include <sprout/tuple/tuple/tuple.hpp>
|
|
|
|
#include <sprout/tuple/tuple/get.hpp>
|
2012-12-11 16:47:14 +00:00
|
|
|
#include <sprout/functional/equal_to.hpp>
|
2012-04-01 13:15:09 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
2012-12-11 16:47:14 +00:00
|
|
|
namespace detail {
|
|
|
|
template<typename RandomAccessIterator1, typename RandomAccessIterator2, typename BinaryPredicate>
|
|
|
|
inline SPROUT_CONSTEXPR bool
|
|
|
|
equal_impl_ra(
|
|
|
|
RandomAccessIterator1 first1, RandomAccessIterator1 last1, RandomAccessIterator2 first2, BinaryPredicate pred,
|
|
|
|
typename std::iterator_traits<RandomAccessIterator1>::difference_type pivot
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return pivot == 0 ? pred(*first1, *first2)
|
|
|
|
: sprout::detail::equal_impl_ra(
|
|
|
|
first1, sprout::next(first1, pivot), first2, pred,
|
|
|
|
pivot / 2
|
|
|
|
)
|
|
|
|
&& sprout::detail::equal_impl_ra(
|
|
|
|
sprout::next(first1, pivot), last1, sprout::next(first2, pivot), pred,
|
2013-01-03 08:01:50 +00:00
|
|
|
(sprout::distance(first1, last1) - pivot) / 2
|
2012-12-11 16:47:14 +00:00
|
|
|
)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename RandomAccessIterator1, typename RandomAccessIterator2, typename BinaryPredicate>
|
2013-01-03 08:38:45 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
sprout::is_constant_distance_iterator<RandomAccessIterator1>::value && sprout::is_constant_distance_iterator<RandomAccessIterator2>::value,
|
|
|
|
bool
|
|
|
|
>::type
|
2012-12-11 16:47:14 +00:00
|
|
|
equal(
|
|
|
|
RandomAccessIterator1 first1, RandomAccessIterator1 last1, RandomAccessIterator2 first2, BinaryPredicate pred,
|
|
|
|
std::random_access_iterator_tag*
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return first1 == last1 ? true
|
|
|
|
: sprout::detail::equal_impl_ra(
|
|
|
|
first1, last1, first2, pred,
|
2013-01-03 08:01:50 +00:00
|
|
|
sprout::distance(first1, last1) / 2
|
2012-12-11 16:47:14 +00:00
|
|
|
)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename InputIterator1, typename InputIterator2, typename BinaryPredicate>
|
2013-01-03 08:01:50 +00:00
|
|
|
inline SPROUT_CONSTEXPR sprout::tuples::tuple<InputIterator1, InputIterator2, bool>
|
|
|
|
equal_impl_1(
|
|
|
|
sprout::tuples::tuple<InputIterator1, InputIterator2, bool> const& current,
|
|
|
|
InputIterator1 last1, BinaryPredicate pred, typename std::iterator_traits<InputIterator1>::difference_type n
|
|
|
|
)
|
|
|
|
{
|
|
|
|
typedef sprout::tuples::tuple<InputIterator1, InputIterator2, bool> type;
|
|
|
|
return !sprout::tuples::get<2>(current) || sprout::tuples::get<0>(current) == last1 ? current
|
|
|
|
: n == 1 ? pred(*sprout::tuples::get<0>(current), *sprout::tuples::get<1>(current))
|
|
|
|
? type(sprout::next(sprout::tuples::get<0>(current)), sprout::next(sprout::tuples::get<1>(current)), true)
|
|
|
|
: type(sprout::tuples::get<0>(current), sprout::tuples::get<1>(current), false)
|
|
|
|
: sprout::detail::equal_impl_1(
|
|
|
|
sprout::detail::equal_impl_1(
|
|
|
|
current,
|
|
|
|
last1, pred, n / 2
|
|
|
|
),
|
|
|
|
last1, pred, n - n / 2
|
|
|
|
)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename InputIterator1, typename InputIterator2, typename BinaryPredicate>
|
|
|
|
inline SPROUT_CONSTEXPR sprout::tuples::tuple<InputIterator1, InputIterator2, bool>
|
|
|
|
equal_impl(
|
|
|
|
sprout::tuples::tuple<InputIterator1, InputIterator2, bool> const& current,
|
|
|
|
InputIterator1 last1, BinaryPredicate pred, typename std::iterator_traits<InputIterator1>::difference_type n
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return !sprout::tuples::get<2>(current) || sprout::tuples::get<0>(current) == last1 ? current
|
|
|
|
: sprout::detail::equal_impl(
|
|
|
|
sprout::detail::equal_impl_1(
|
|
|
|
current,
|
|
|
|
last1, pred, n
|
|
|
|
),
|
|
|
|
last1, pred, n * 2
|
|
|
|
)
|
2012-12-11 16:47:14 +00:00
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename InputIterator1, typename InputIterator2, typename BinaryPredicate>
|
|
|
|
inline SPROUT_CONSTEXPR bool
|
|
|
|
equal(
|
|
|
|
InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, BinaryPredicate pred,
|
2013-02-23 06:21:27 +00:00
|
|
|
std::input_iterator_tag*
|
2012-12-11 16:47:14 +00:00
|
|
|
)
|
|
|
|
{
|
2013-01-03 08:01:50 +00:00
|
|
|
typedef sprout::tuples::tuple<InputIterator1, InputIterator2, bool> type;
|
|
|
|
return sprout::tuples::get<2>(
|
|
|
|
sprout::detail::equal_impl(type(first1, first2, true), last1, pred, 1)
|
|
|
|
);
|
2012-12-11 16:47:14 +00:00
|
|
|
}
|
2013-01-10 17:55:19 +00:00
|
|
|
} // namespace detail
|
2012-04-01 13:15:09 +00:00
|
|
|
|
|
|
|
// 25.2.11 Equal
|
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-12-11 16:47:14 +00:00
|
|
|
template<typename InputIterator1, typename InputIterator2, typename BinaryPredicate>
|
2012-10-06 04:53:07 +00:00
|
|
|
inline SPROUT_CONSTEXPR bool
|
2012-12-11 16:47:14 +00:00
|
|
|
equal(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, BinaryPredicate pred) {
|
|
|
|
typedef typename sprout::common_iterator_category<InputIterator1, InputIterator2>::type* category;
|
|
|
|
return sprout::detail::equal(first1, last1, first2, pred, category());
|
2012-04-01 13:15:09 +00:00
|
|
|
}
|
|
|
|
|
2012-12-11 16:47:14 +00:00
|
|
|
template<typename InputIterator1, typename InputIterator2>
|
2012-10-06 04:53:07 +00:00
|
|
|
inline SPROUT_CONSTEXPR bool
|
2012-12-11 16:47:14 +00:00
|
|
|
equal(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2) {
|
|
|
|
return sprout::equal(first1, last1, first2, sprout::equal_to<>());
|
2012-04-01 13:15:09 +00:00
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_EQUAL_HPP
|