/*============================================================================= Copyright (c) 2011-2016 Bolero MURAKAMI 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) =============================================================================*/ #ifndef SPROUT_ALGORITHM_BINARY_SEARCH_HPP #define SPROUT_ALGORITHM_BINARY_SEARCH_HPP #include #include #include #include namespace sprout { namespace detail { template inline SPROUT_CONSTEXPR bool binary_search_impl(ForwardIterator first, ForwardIterator last, T const& value, Compare comp) { return (first != last && !comp(value, *first)); } } // namespace detail // 25.4.3.4 binary_search // // recursion depth: // O(log N) // template inline SPROUT_CONSTEXPR bool binary_search(ForwardIterator first, ForwardIterator last, T const& value, Compare comp) { return sprout::detail::binary_search_impl(sprout::lower_bound(first, last, value, comp), last, value, comp); } template inline SPROUT_CONSTEXPR bool binary_search(ForwardIterator first, ForwardIterator last, T const& value) { return sprout::binary_search(first, last, value, sprout::less<>()); } } // namespace sprout #endif // #ifndef SPROUT_ALGORITHM_BINARY_SEARCH_HPP