Sprout/sprout/algorithm/lexicographical_compare.hpp

116 lines
4 KiB
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
2015-01-10 10:13:57 +00:00
Copyright (c) 2011-2015 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-04-01 13:15:09 +00:00
#ifndef SPROUT_ALGORITHM_LEXICOGRAPHICAL_COMPARE_HPP
#define SPROUT_ALGORITHM_LEXICOGRAPHICAL_COMPARE_HPP
2013-01-11 17:39:51 +00:00
#include <iterator>
#include <type_traits>
2012-04-01 13:15:09 +00:00
#include <sprout/config.hpp>
#include <sprout/detail/algorithm/lexicographical_compare.hpp>
#include <sprout/iterator/distance.hpp>
2013-02-26 07:14:04 +00:00
#include <sprout/iterator/type_traits/category.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/utility/pair/pair.hpp>
#include <sprout/functional/less.hpp>
#include HDR_ALGORITHM_MIN_MAX_SSCRISK_CEL_OR_SPROUT
2012-04-01 13:15:09 +00:00
namespace sprout {
namespace detail {
template<typename Difference1, typename Difference2>
inline SPROUT_CONSTEXPR bool
2013-01-11 17:39:51 +00:00
lexicographical_compare_impl_check(
Difference1 size1, Difference2 size2,
int found
)
{
2014-04-14 06:52:20 +00:00
return found < 0 || (found == 2 && size1 < size2);
}
2013-01-11 17:39:51 +00:00
template<typename RandomAccessIterator1, typename RandomAccessIterator2, typename Compare>
2013-01-11 17:39:51 +00:00
inline SPROUT_CONSTEXPR typename std::enable_if<
sprout::is_constant_distance_iterator<RandomAccessIterator1>::value,
bool
>::type
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_check(
sprout::distance(first1, last1), sprout::distance(first2, last2),
sprout::detail::lexicographical_compare_impl_ra(
first1, first2, comp,
NS_SSCRISK_CEL_OR_SPROUT::min(sprout::distance(first1, last1), sprout::distance(first2, last2)),
2
)
)
;
}
template<typename InputIterator1, typename InputIterator2, typename Compare>
inline SPROUT_CONSTEXPR bool
lexicographical_compare_impl_check(
2013-01-11 17:39:51 +00:00
InputIterator1 last1, InputIterator2 last2, Compare comp,
sprout::pair<InputIterator1, InputIterator2> const& found
2013-01-11 17:39:51 +00:00
)
{
return found.second == last2 ? false
: found.first == last1 || comp(*found.first, *found.second)
;
}
template<typename InputIterator1, typename InputIterator2, typename Compare>
inline SPROUT_CONSTEXPR bool
lexicographical_compare(
InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, InputIterator2 last2, Compare comp,
2013-02-23 06:21:27 +00:00
std::input_iterator_tag*
)
{
2013-01-11 17:39:51 +00:00
typedef sprout::pair<InputIterator1, InputIterator2> type;
return sprout::detail::lexicographical_compare_impl_check(
last1, last2, comp,
sprout::detail::lexicographical_compare_impl(type(first1, first2), last1, last2, comp, 1)
);
}
2013-01-10 17:55:19 +00:00
} // namespace detail
2012-04-01 13:15:09 +00:00
// 25.4.8 Lexicographical comparison
//
// recursion depth:
2013-01-11 17:39:51 +00:00
// O(log(N1+N2))
//
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
)
{
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,
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