Sprout/sprout/algorithm/fold_while.hpp

71 lines
2.6 KiB
C++
Raw Normal View History

2015-04-13 02:40:49 +00:00
/*=============================================================================
2016-02-25 09:48:28 +00:00
Copyright (c) 2011-2016 Bolero MURAKAMI
2015-04-13 02:40:49 +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)
=============================================================================*/
#ifndef SPROUT_ALGORITHM_FOLD_WHILE_HPP
#define SPROUT_ALGORITHM_FOLD_WHILE_HPP
#include <iterator>
#include <sprout/config.hpp>
#include <sprout/iterator/operation.hpp>
#include <sprout/utility/pair/pair.hpp>
namespace sprout {
namespace detail {
template<typename InputIterator, typename T, typename BinaryOperation, typename Predicate>
inline SPROUT_CONSTEXPR sprout::pair<InputIterator, T>
fold_while_impl_1(
sprout::pair<InputIterator, T> const& current,
2016-04-01 14:37:48 +00:00
InputIterator const& last, BinaryOperation binary_op, Predicate pred, typename std::iterator_traits<InputIterator>::difference_type n
2015-04-13 02:40:49 +00:00
)
{
typedef sprout::pair<InputIterator, T> type;
return current.first == last || !pred(current.second) ? current
: n == 1 ? type(sprout::next(current.first), binary_op(current.second, *current.first))
: sprout::detail::fold_while_impl_1(
sprout::detail::fold_while_impl_1(
current,
last, binary_op, pred, n / 2
),
last, binary_op, pred, n - n / 2
)
;
}
template<typename InputIterator, typename T, typename BinaryOperation, typename Predicate>
inline SPROUT_CONSTEXPR sprout::pair<InputIterator, T>
fold_while_impl(
sprout::pair<InputIterator, T> const& current,
2016-04-01 14:37:48 +00:00
InputIterator const& last, BinaryOperation binary_op, Predicate pred, typename std::iterator_traits<InputIterator>::difference_type n
2015-04-13 02:40:49 +00:00
)
{
return current.first == last || !pred(current.second) ? current
: sprout::detail::fold_while_impl(
sprout::detail::fold_while_impl_1(
current,
last, binary_op, pred, n
),
last, binary_op, pred, n * 2
)
;
}
} // namespace detail
//
// fold_while
//
// recursion depth:
// O(log N)
//
template<typename InputIterator, typename T, typename BinaryOperation, typename Predicate>
inline SPROUT_CONSTEXPR T
fold_while(InputIterator first, InputIterator last, T init, BinaryOperation binary_op, Predicate pred) {
typedef sprout::pair<InputIterator, T> type;
return sprout::detail::fold_while_impl(type(first, init), last, binary_op, pred, 1).second;
}
} // namespace sprout
#endif // #ifndef SPROUT_ALGORITHM_FOLD_WHILE_HPP