2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2015-03-31 11:05:32 +00:00
|
|
|
Copyright (c) 2011 RiSK (sscrisk)
|
|
|
|
https://github.com/sscrisk/CEL---ConstExpr-Library
|
|
|
|
|
2016-02-25 09:48:28 +00:00
|
|
|
Copyright (c) 2011-2016 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_UPPER_BOUND_HPP
|
|
|
|
#define SPROUT_ALGORITHM_UPPER_BOUND_HPP
|
|
|
|
|
2013-09-02 05:46:13 +00:00
|
|
|
#include <iterator>
|
2012-04-01 13:15:09 +00:00
|
|
|
#include <sprout/config.hpp>
|
2013-09-02 05:46:13 +00:00
|
|
|
#include <sprout/iterator/next.hpp>
|
2013-08-31 15:13:23 +00:00
|
|
|
#include <sprout/iterator/distance.hpp>
|
2013-08-30 23:29:24 +00:00
|
|
|
#include <sprout/functional/less.hpp>
|
2012-04-01 13:15:09 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
2013-09-02 05:46:13 +00:00
|
|
|
namespace detail {
|
|
|
|
template<typename ForwardIterator, typename T, typename Compare>
|
|
|
|
inline SPROUT_CONSTEXPR ForwardIterator
|
|
|
|
upper_bound(
|
2016-04-01 14:37:48 +00:00
|
|
|
ForwardIterator const& first, typename std::iterator_traits<ForwardIterator>::difference_type len,
|
2013-09-02 05:46:13 +00:00
|
|
|
T const& value, Compare comp
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return len == 0 ? first
|
|
|
|
: comp(value, *sprout::next(first, len / 2))
|
|
|
|
? sprout::detail::upper_bound(first, len / 2, value, comp)
|
|
|
|
: sprout::detail::upper_bound(sprout::next(first, len / 2 + 1), len - (len / 2 + 1), value, comp)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
} // namespace detail
|
2012-04-01 13:15:09 +00:00
|
|
|
|
|
|
|
// 25.4.3.2 upper_bound
|
2012-12-15 14:48:52 +00:00
|
|
|
//
|
|
|
|
// recursion depth:
|
2013-01-10 18:17:06 +00:00
|
|
|
// O(log N)
|
2012-12-15 14:48:52 +00:00
|
|
|
//
|
2012-04-01 13:15:09 +00:00
|
|
|
template<typename ForwardIterator, typename T, typename Compare>
|
2012-10-06 04:53:07 +00:00
|
|
|
inline SPROUT_CONSTEXPR ForwardIterator
|
|
|
|
upper_bound(ForwardIterator first, ForwardIterator last, T const& value, Compare comp) {
|
2013-08-31 15:13:23 +00:00
|
|
|
return sprout::detail::upper_bound(first, sprout::distance(first, last), value, comp);
|
2012-04-01 13:15:09 +00:00
|
|
|
}
|
2012-12-15 14:48:52 +00:00
|
|
|
|
|
|
|
template<typename ForwardIterator, typename T>
|
|
|
|
inline SPROUT_CONSTEXPR ForwardIterator
|
|
|
|
upper_bound(ForwardIterator first, ForwardIterator last, T const& value) {
|
2013-08-30 23:29:24 +00:00
|
|
|
return sprout::upper_bound(first, last, value, sprout::less<>());
|
2012-12-15 14:48:52 +00:00
|
|
|
}
|
2012-04-01 13:15:09 +00:00
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_UPPER_BOUND_HPP
|