Sprout/sprout/algorithm/lower_bound.hpp

46 lines
1.7 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_LOWER_BOUND_HPP
#define SPROUT_ALGORITHM_LOWER_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>
2012-12-15 14:48:52 +00:00
#include HDR_FUNCTIONAL_SSCRISK_CEL_OR_SPROUT
2012-04-01 13:15:09 +00:00
namespace sprout {
// 25.4.3.1 lower_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
lower_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(*first, value) ? last : first
: comp(*sprout::next(first, sprout::distance(first, last) / 2), value)
2013-08-30 15:57:06 +00:00
? sprout::lower_bound(sprout::next(first, sprout::distance(first, last) / 2 + 1), last, value, comp)
: sprout::lower_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
lower_bound(ForwardIterator first, ForwardIterator last, T const& value) {
return sprout::lower_bound(
first, last, value,
2013-08-30 15:57:06 +00:00
NS_SSCRISK_CEL_OR_SPROUT::less<>()
2012-12-15 14:48:52 +00:00
);
}
2012-04-01 13:15:09 +00:00
} // namespace sprout
#endif // #ifndef SPROUT_ALGORITHM_LOWER_BOUND_HPP