2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
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-10-13 03:49:23 +00:00
|
|
|
#ifndef SPROUT_ALGORITHM_ALL_OF_EQUAL_HPP
|
|
|
|
#define SPROUT_ALGORITHM_ALL_OF_EQUAL_HPP
|
|
|
|
|
2012-12-16 15:36:19 +00:00
|
|
|
#include <iterator>
|
2013-01-11 18:41:13 +00:00
|
|
|
#include <type_traits>
|
2012-10-13 03:49:23 +00:00
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/iterator/operation.hpp>
|
2013-02-26 07:14:04 +00:00
|
|
|
#include <sprout/iterator/type_traits/category.hpp>
|
2013-02-07 14:12:57 +00:00
|
|
|
#include <sprout/utility/pair/pair.hpp>
|
2012-10-13 03:49:23 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
2012-12-16 15:36:19 +00:00
|
|
|
namespace detail {
|
|
|
|
template<typename RandomAccessIterator, typename T>
|
|
|
|
inline SPROUT_CONSTEXPR bool
|
|
|
|
all_of_equal_impl_ra(
|
2016-04-01 14:37:48 +00:00
|
|
|
RandomAccessIterator const& first, RandomAccessIterator const& last, T const& value,
|
2012-12-16 15:36:19 +00:00
|
|
|
typename std::iterator_traits<RandomAccessIterator>::difference_type pivot
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return pivot == 0 ? *first == value
|
|
|
|
: sprout::detail::all_of_equal_impl_ra(
|
|
|
|
first, sprout::next(first, pivot), value,
|
|
|
|
pivot / 2
|
|
|
|
)
|
|
|
|
&& sprout::detail::all_of_equal_impl_ra(
|
|
|
|
sprout::next(first, pivot), last, value,
|
2013-01-03 08:01:50 +00:00
|
|
|
(sprout::distance(first, last) - pivot) / 2
|
2012-12-16 15:36:19 +00:00
|
|
|
)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename RandomAccessIterator, typename T>
|
2013-01-11 18:41:13 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
sprout::is_constant_distance_iterator<RandomAccessIterator>::value,
|
|
|
|
bool
|
|
|
|
>::type
|
2012-12-16 15:36:19 +00:00
|
|
|
all_of_equal(
|
2016-04-01 14:37:48 +00:00
|
|
|
RandomAccessIterator const& first, RandomAccessIterator const& last, T const& value,
|
2012-12-16 15:36:19 +00:00
|
|
|
std::random_access_iterator_tag*
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return first == last ? true
|
2013-01-03 08:01:50 +00:00
|
|
|
: sprout::detail::all_of_equal_impl_ra(first, last, value, sprout::distance(first, last) / 2)
|
2012-12-16 15:36:19 +00:00
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename InputIterator, typename T>
|
2013-01-11 18:41:13 +00:00
|
|
|
inline SPROUT_CONSTEXPR sprout::pair<InputIterator, bool>
|
|
|
|
all_of_equal_impl_1(
|
|
|
|
sprout::pair<InputIterator, bool> const& current,
|
2016-04-01 14:37:48 +00:00
|
|
|
InputIterator const& last, T const& value, typename std::iterator_traits<InputIterator>::difference_type n
|
2013-01-11 18:41:13 +00:00
|
|
|
)
|
|
|
|
{
|
|
|
|
typedef sprout::pair<InputIterator, bool> type;
|
|
|
|
return !current.second || current.first == last ? current
|
|
|
|
: n == 1 ? *current.first == value ? type(sprout::next(current.first), true) : type(current.first, false)
|
|
|
|
: sprout::detail::all_of_equal_impl_1(
|
|
|
|
sprout::detail::all_of_equal_impl_1(
|
|
|
|
current,
|
|
|
|
last, value, n / 2
|
|
|
|
),
|
|
|
|
last, value, n - n / 2
|
|
|
|
)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename InputIterator, typename T>
|
|
|
|
inline SPROUT_CONSTEXPR sprout::pair<InputIterator, bool>
|
|
|
|
all_of_equal_impl(
|
|
|
|
sprout::pair<InputIterator, bool> const& current,
|
2016-04-01 14:37:48 +00:00
|
|
|
InputIterator const& last, T const& value, typename std::iterator_traits<InputIterator>::difference_type n
|
2013-01-11 18:41:13 +00:00
|
|
|
)
|
|
|
|
{
|
|
|
|
return !current.second || current.first == last ? current
|
|
|
|
: sprout::detail::all_of_equal_impl(
|
|
|
|
sprout::detail::all_of_equal_impl_1(
|
|
|
|
current,
|
|
|
|
last, value, n
|
|
|
|
),
|
|
|
|
last, value, n * 2
|
|
|
|
)
|
2012-12-16 15:36:19 +00:00
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename InputIterator, typename T>
|
|
|
|
inline SPROUT_CONSTEXPR bool
|
|
|
|
all_of_equal(
|
2016-04-01 14:37:48 +00:00
|
|
|
InputIterator const& first, InputIterator const& last, T const& value,
|
2013-02-23 06:21:27 +00:00
|
|
|
std::input_iterator_tag*
|
2012-12-16 15:36:19 +00:00
|
|
|
)
|
|
|
|
{
|
2013-01-11 18:41:13 +00:00
|
|
|
typedef sprout::pair<InputIterator, bool> type;
|
|
|
|
return sprout::detail::all_of_equal_impl(type(first, true), last, value, 1).second;
|
2012-12-16 15:36:19 +00:00
|
|
|
}
|
2013-01-10 17:55:19 +00:00
|
|
|
} // namespace detail
|
2012-12-16 15:36:19 +00:00
|
|
|
|
2012-10-13 03:49:23 +00:00
|
|
|
//
|
|
|
|
// all_of_equal
|
|
|
|
//
|
2012-12-16 15:36:19 +00:00
|
|
|
// recursion depth:
|
2013-01-11 18:41:13 +00:00
|
|
|
// O(log N)
|
2012-12-16 15:36:19 +00:00
|
|
|
//
|
2012-10-13 03:49:23 +00:00
|
|
|
template<typename InputIterator, typename T>
|
|
|
|
inline SPROUT_CONSTEXPR bool
|
|
|
|
all_of_equal(InputIterator first, InputIterator last, T const& value) {
|
2012-12-16 15:36:19 +00:00
|
|
|
typedef typename std::iterator_traits<InputIterator>::iterator_category* category;
|
|
|
|
return sprout::detail::all_of_equal(first, last, value, category());
|
2012-10-13 03:49:23 +00:00
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_ALL_OF_EQUAL_HPP
|