Sprout/sprout/algorithm/upper_bound.hpp

43 lines
1.6 KiB
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
Copyright (c) 2011-2013 Bolero MURAKAMI
Copyright (C) 2011 RiSK (sscrisk)
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
2012-12-15 14:48:52 +00:00
#include <iterator>
2012-04-01 13:15:09 +00:00
#include <sprout/config.hpp>
#include <sprout/iterator/operation.hpp>
2013-08-30 23:29:24 +00:00
#include <sprout/functional/less.hpp>
2012-04-01 13:15:09 +00:00
namespace sprout {
// 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) {
2012-04-01 13:15:09 +00:00
return first == last ? last
: sprout::next(first) == last ? !comp(value, *first) ? last : first
: !comp(value, *sprout::next(first, sprout::distance(first, last) / 2))
2013-08-30 16:08:37 +00:00
? sprout::upper_bound(sprout::next(first, sprout::distance(first, last) / 2 + 1), last, value, comp)
: sprout::upper_bound(first, sprout::next(first, sprout::distance(first, last) / 2), 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