Sprout/sprout/algorithm/is_partitioned.hpp

109 lines
4.2 KiB
C++
Raw Normal View History

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-04-01 13:15:09 +00:00
#ifndef SPROUT_ALGORITHM_IS_PARTITIONED_HPP
#define SPROUT_ALGORITHM_IS_PARTITIONED_HPP
2013-01-10 17:55:19 +00:00
#include <iterator>
#include <type_traits>
2012-04-01 13:15:09 +00:00
#include <sprout/config.hpp>
2013-01-10 17:55:19 +00:00
#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>
#include <sprout/algorithm/none_of.hpp>
#include <sprout/algorithm/find_if_not.hpp>
2012-04-01 13:15:09 +00:00
namespace sprout {
2013-01-10 17:55:19 +00:00
namespace detail {
template<typename RandomAccessIterator, typename Predicate>
inline SPROUT_CONSTEXPR bool
2016-04-01 14:37:48 +00:00
is_partitioned_impl_ra(RandomAccessIterator const& first, RandomAccessIterator const& last, Predicate pred) {
2013-01-10 17:55:19 +00:00
return first == last ? true
: sprout::none_of(sprout::next(first), last, pred)
;
}
template<typename RandomAccessIterator, typename Predicate>
inline SPROUT_CONSTEXPR typename std::enable_if<
sprout::is_constant_distance_iterator<RandomAccessIterator>::value,
bool
>::type
is_partitioned(
2016-04-01 14:37:48 +00:00
RandomAccessIterator const& first, RandomAccessIterator const& last, Predicate pred,
2013-01-10 17:55:19 +00:00
std::random_access_iterator_tag*
)
{
return sprout::detail::is_partitioned_impl_ra(
sprout::find_if_not(first, last, pred),
last, pred
);
}
template<typename InputIterator, typename Predicate>
inline SPROUT_CONSTEXPR sprout::pair<InputIterator, typename std::iterator_traits<InputIterator>::difference_type>
is_partitioned_impl_1(
sprout::pair<InputIterator, typename std::iterator_traits<InputIterator>::difference_type> const& current,
2016-04-01 14:37:48 +00:00
InputIterator const& last, Predicate pred, typename std::iterator_traits<InputIterator>::difference_type n
2013-01-10 17:55:19 +00:00
)
{
typedef sprout::pair<InputIterator, typename std::iterator_traits<InputIterator>::difference_type> type;
return current.second > 1 || current.first == last ? current
: n == 1 ? current.second == 0
? pred(*current.first) ? type(sprout::next(current.first), 0) : type(sprout::next(current.first), 1)
2013-01-10 17:55:19 +00:00
: !pred(*current.first) ? type(sprout::next(current.first), 1) : type(current.first, 2)
: sprout::detail::is_partitioned_impl_1(
sprout::detail::is_partitioned_impl_1(
current,
last, pred, n / 2
),
last, pred, n - n / 2
)
;
}
template<typename InputIterator, typename Predicate>
inline SPROUT_CONSTEXPR sprout::pair<InputIterator, typename std::iterator_traits<InputIterator>::difference_type>
is_partitioned_impl(
sprout::pair<InputIterator, typename std::iterator_traits<InputIterator>::difference_type> const& current,
2016-04-01 14:37:48 +00:00
InputIterator const& last, Predicate pred, typename std::iterator_traits<InputIterator>::difference_type n
2013-01-10 17:55:19 +00:00
)
{
return current.second > 1 || current.first == last ? current
: sprout::detail::is_partitioned_impl(
sprout::detail::is_partitioned_impl_1(
current,
last, pred, n
),
last, pred, n * 2
)
;
}
template<typename InputIterator, typename Predicate>
inline SPROUT_CONSTEXPR bool
is_partitioned(
2016-04-01 14:37:48 +00:00
InputIterator const& first, InputIterator const& last, Predicate pred,
2013-02-23 06:21:27 +00:00
std::input_iterator_tag*
2013-01-10 17:55:19 +00:00
)
{
typedef sprout::pair<InputIterator, typename std::iterator_traits<InputIterator>::difference_type> type;
return sprout::detail::is_partitioned_impl(type(first, 0), last, pred, 1).second <= 1;
}
} // namespace detail
2012-04-01 13:15:09 +00:00
// 25.3.13 Partitions
//
// recursion depth:
2013-01-10 17:55:19 +00:00
// O(log N)
//
2012-04-01 13:15:09 +00:00
template<typename InputIterator, typename Predicate>
2012-10-06 04:53:07 +00:00
inline SPROUT_CONSTEXPR bool
is_partitioned(InputIterator first, InputIterator last, Predicate pred) {
2013-01-10 17:55:19 +00:00
typedef typename std::iterator_traits<InputIterator>::iterator_category* category;
return sprout::detail::is_partitioned(first, last, pred, category());
2012-04-01 13:15:09 +00:00
}
} // namespace sprout
#endif // #ifndef SPROUT_ALGORITHM_IS_PARTITIONED_HPP