2012-04-01 13:15:09 +00:00
|
|
|
#ifndef SPROUT_ALGORITHM_LEXICOGRAPHICAL_COMPARE_HPP
|
|
|
|
#define SPROUT_ALGORITHM_LEXICOGRAPHICAL_COMPARE_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/iterator/operation.hpp>
|
2012-12-21 14:12:54 +00:00
|
|
|
#include <sprout/iterator/type_traits/common.hpp>
|
2012-12-16 15:14:24 +00:00
|
|
|
#include <sprout/utility/pair.hpp>
|
|
|
|
#include <sprout/algorithm/min.hpp>
|
|
|
|
#include <sprout/functional/less.hpp>
|
2012-04-01 13:15:09 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
2012-12-16 15:14:24 +00:00
|
|
|
namespace detail {
|
|
|
|
template<typename RandomAccessIterator1, typename RandomAccessIterator2, typename Compare>
|
|
|
|
inline SPROUT_CONSTEXPR bool
|
|
|
|
lexicographical_compare_impl_ra_2(
|
|
|
|
RandomAccessIterator1 last1, RandomAccessIterator2 last2, Compare comp,
|
|
|
|
sprout::pair<RandomAccessIterator1, RandomAccessIterator2> const& found
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return found.second == last2 ? false
|
|
|
|
: found.first == last1 || comp(*found.first, *found.second)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename RandomAccessIterator1, typename RandomAccessIterator2, typename Compare>
|
|
|
|
inline SPROUT_CONSTEXPR sprout::pair<RandomAccessIterator1, RandomAccessIterator2>
|
|
|
|
lexicographical_compare_impl_ra_1(
|
|
|
|
RandomAccessIterator1 first1, RandomAccessIterator1 last1, RandomAccessIterator2 first2, RandomAccessIterator2 last2, Compare comp,
|
|
|
|
typename std::iterator_traits<RandomAccessIterator1>::difference_type pivot, sprout::pair<RandomAccessIterator1, RandomAccessIterator2> const& found
|
|
|
|
)
|
|
|
|
{
|
|
|
|
typedef sprout::pair<RandomAccessIterator1, RandomAccessIterator2> found_type;
|
|
|
|
return found.first != first1 ? found
|
|
|
|
: pivot == 0 ? (comp(*first1, *first2) || comp(*first2, *first1) ? found_type(first1, first2) : found_type(last1, last2))
|
|
|
|
: sprout::detail::lexicographical_compare_impl_ra_1(
|
|
|
|
sprout::next(first1, pivot), last1, sprout::next(first2, pivot), last2, comp,
|
2013-01-03 08:01:50 +00:00
|
|
|
(sprout::distance(first1, last1) - pivot) / 2,
|
2012-12-16 15:14:24 +00:00
|
|
|
sprout::detail::lexicographical_compare_impl_ra_1(
|
|
|
|
first1, sprout::next(first1, pivot), first2, sprout::next(first2, pivot), comp,
|
|
|
|
pivot / 2,
|
|
|
|
found_type(first1, first2)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename RandomAccessIterator1, typename RandomAccessIterator2, typename Compare>
|
|
|
|
inline SPROUT_CONSTEXPR bool
|
|
|
|
lexicographical_compare_impl_ra(
|
|
|
|
RandomAccessIterator1 first1, RandomAccessIterator1 last1, RandomAccessIterator2 first2, RandomAccessIterator2 last2, Compare comp,
|
|
|
|
typename std::iterator_traits<RandomAccessIterator1>::difference_type size
|
|
|
|
)
|
|
|
|
{
|
|
|
|
typedef sprout::pair<RandomAccessIterator1, RandomAccessIterator2> found_type;
|
|
|
|
return sprout::detail::lexicographical_compare_impl_ra_2(
|
|
|
|
last1, last2, comp,
|
|
|
|
sprout::detail::lexicographical_compare_impl_ra_1(
|
|
|
|
first1, sprout::next(first1, size), first2, sprout::next(first2, size), comp,
|
|
|
|
size / 2, found_type(first1, first2)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
template<typename RandomAccessIterator1, typename RandomAccessIterator2, typename Compare>
|
|
|
|
inline SPROUT_CONSTEXPR bool
|
|
|
|
lexicographical_compare(
|
|
|
|
RandomAccessIterator1 first1, RandomAccessIterator1 last1, RandomAccessIterator2 first2, RandomAccessIterator2 last2, Compare comp,
|
|
|
|
std::random_access_iterator_tag*
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return first2 == last2 ? false
|
|
|
|
: first1 == last1 ? true
|
|
|
|
: sprout::detail::lexicographical_compare_impl_ra(
|
|
|
|
first1, last1, first2, last2, comp,
|
2013-01-03 08:01:50 +00:00
|
|
|
sprout::min(sprout::distance(first1, last1), sprout::distance(first2, last2))
|
2012-12-16 15:14:24 +00:00
|
|
|
)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Copyright (C) 2011 RiSK (sscrisk)
|
|
|
|
template<typename InputIterator1, typename InputIterator2, typename Compare>
|
|
|
|
inline SPROUT_CONSTEXPR bool
|
|
|
|
lexicographical_compare_impl(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, InputIterator2 last2, Compare comp) {
|
|
|
|
return first2 == last2 ? false
|
|
|
|
: first1 == last1 || comp(*first1, *first2) ? true
|
|
|
|
: comp(*first2, *first1) ? false
|
|
|
|
: sprout::detail::lexicographical_compare_impl(sprout::next(first1), last1, sprout::next(first2), last2, comp)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename InputIterator1, typename InputIterator2, typename Compare>
|
|
|
|
inline SPROUT_CONSTEXPR bool
|
|
|
|
lexicographical_compare(
|
|
|
|
InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, InputIterator2 last2, Compare comp,
|
|
|
|
void*
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return sprout::detail::lexicographical_compare_impl(first1, last1, first2, last2, comp);
|
|
|
|
}
|
|
|
|
} //namespace detail
|
2012-04-01 13:15:09 +00:00
|
|
|
|
|
|
|
// 25.4.8 Lexicographical comparison
|
2012-12-16 15:14:24 +00:00
|
|
|
//
|
|
|
|
// recursion depth:
|
|
|
|
// [first1, last1), [first2, last2) are RandomAccessIterator -> O(log N)
|
|
|
|
// otherwise -> O(N)
|
|
|
|
//
|
2012-04-01 13:15:09 +00:00
|
|
|
template<typename InputIterator1, typename InputIterator2, typename Compare>
|
2012-10-06 04:53:07 +00:00
|
|
|
inline SPROUT_CONSTEXPR bool
|
|
|
|
lexicographical_compare(
|
|
|
|
InputIterator1 first1, InputIterator1 last1,
|
|
|
|
InputIterator2 first2, InputIterator2 last2,
|
2012-04-01 13:15:09 +00:00
|
|
|
Compare comp
|
|
|
|
)
|
|
|
|
{
|
2012-12-16 15:14:24 +00:00
|
|
|
typedef typename sprout::common_iterator_category<InputIterator1, InputIterator2>::type* category;
|
|
|
|
return sprout::detail::lexicographical_compare(first1, last1, first2, last2, comp, category());
|
2012-04-01 13:15:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename InputIterator1, typename InputIterator2>
|
2012-10-06 04:53:07 +00:00
|
|
|
inline SPROUT_CONSTEXPR bool
|
|
|
|
lexicographical_compare(
|
|
|
|
InputIterator1 first1, InputIterator1 last1,
|
|
|
|
InputIterator2 first2, InputIterator2 last2
|
2012-04-01 13:15:09 +00:00
|
|
|
)
|
|
|
|
{
|
2012-10-06 04:53:07 +00:00
|
|
|
return sprout::lexicographical_compare(
|
|
|
|
first1, last1, first2, last2,
|
2012-12-16 15:14:24 +00:00
|
|
|
sprout::less<>()
|
2012-10-06 04:53:07 +00:00
|
|
|
);
|
2012-04-01 13:15:09 +00:00
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_LEXICOGRAPHICAL_COMPARE_HPP
|