mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-02 14:04:20 +00:00
fix recursion depth: all_of_equal, any_of_equal, none_of_equal, one_of_equal
This commit is contained in:
parent
750e3b944d
commit
bc04943aaa
10 changed files with 394 additions and 9 deletions
|
@ -1,19 +1,73 @@
|
|||
#ifndef SPROUT_ALGORITHM_ALL_OF_EQUAL_HPP
|
||||
#define SPROUT_ALGORITHM_ALL_OF_EQUAL_HPP
|
||||
|
||||
#include <iterator>
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/iterator/operation.hpp>
|
||||
#include HDR_ITERATOR_SSCRISK_CEL_OR_SPROUT
|
||||
|
||||
namespace sprout {
|
||||
namespace detail {
|
||||
template<typename RandomAccessIterator, typename T>
|
||||
inline SPROUT_CONSTEXPR bool
|
||||
all_of_equal_impl_ra(
|
||||
RandomAccessIterator first, RandomAccessIterator last, T const& value,
|
||||
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,
|
||||
(NS_SSCRISK_CEL_OR_SPROUT::distance(first, last) - pivot) / 2
|
||||
)
|
||||
;
|
||||
}
|
||||
template<typename RandomAccessIterator, typename T>
|
||||
inline SPROUT_CONSTEXPR bool
|
||||
all_of_equal(
|
||||
RandomAccessIterator first, RandomAccessIterator last, T const& value,
|
||||
std::random_access_iterator_tag*
|
||||
)
|
||||
{
|
||||
return first == last ? true
|
||||
: sprout::detail::all_of_equal_impl_ra(first, last, value, NS_SSCRISK_CEL_OR_SPROUT::distance(first, last) / 2)
|
||||
;
|
||||
}
|
||||
|
||||
template<typename InputIterator, typename T>
|
||||
inline SPROUT_CONSTEXPR bool
|
||||
all_of_equal_impl(InputIterator first, InputIterator last, T const& value) {
|
||||
return first == last ? true
|
||||
: *first == value && sprout::detail::all_of_equal_impl(sprout::next(first), last, value)
|
||||
;
|
||||
}
|
||||
template<typename InputIterator, typename T>
|
||||
inline SPROUT_CONSTEXPR bool
|
||||
all_of_equal(
|
||||
InputIterator first, InputIterator last, T const& value,
|
||||
void*
|
||||
)
|
||||
{
|
||||
return sprout::detail::all_of_equal_impl(first, last, value);
|
||||
}
|
||||
} //namespace detail
|
||||
|
||||
//
|
||||
// all_of_equal
|
||||
//
|
||||
// recursion depth:
|
||||
// [first, last) is RandomAccessIterator -> O(log N)
|
||||
// otherwise -> O(N)
|
||||
//
|
||||
template<typename InputIterator, typename T>
|
||||
inline SPROUT_CONSTEXPR bool
|
||||
all_of_equal(InputIterator first, InputIterator last, T const& value) {
|
||||
return first == last ? true
|
||||
: *first == value && sprout::all_of_equal(sprout::next(first), last, value)
|
||||
;
|
||||
typedef typename std::iterator_traits<InputIterator>::iterator_category* category;
|
||||
return sprout::detail::all_of_equal(first, last, value, category());
|
||||
}
|
||||
} // namespace sprout
|
||||
|
||||
|
|
|
@ -1,19 +1,73 @@
|
|||
#ifndef SPROUT_ALGORITHM_ANY_OF_EQUAL_HPP
|
||||
#define SPROUT_ALGORITHM_ANY_OF_EQUAL_HPP
|
||||
|
||||
#include <iterator>
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/iterator/operation.hpp>
|
||||
#include HDR_ITERATOR_SSCRISK_CEL_OR_SPROUT
|
||||
|
||||
namespace sprout {
|
||||
namespace detail {
|
||||
template<typename RandomAccessIterator, typename T>
|
||||
inline SPROUT_CONSTEXPR bool
|
||||
any_of_equal_impl_ra(
|
||||
RandomAccessIterator first, RandomAccessIterator last, T const& value,
|
||||
typename std::iterator_traits<RandomAccessIterator>::difference_type pivot
|
||||
)
|
||||
{
|
||||
return pivot == 0 ? *first == value
|
||||
: sprout::detail::any_of_equal_impl_ra(
|
||||
first, sprout::next(first, pivot), value,
|
||||
pivot / 2
|
||||
)
|
||||
|| sprout::detail::any_of_equal_impl_ra(
|
||||
sprout::next(first, pivot), last, value,
|
||||
(NS_SSCRISK_CEL_OR_SPROUT::distance(first, last) - pivot) / 2
|
||||
)
|
||||
;
|
||||
}
|
||||
template<typename RandomAccessIterator, typename T>
|
||||
inline SPROUT_CONSTEXPR bool
|
||||
any_of_equal(
|
||||
RandomAccessIterator first, RandomAccessIterator last, T const& value,
|
||||
std::random_access_iterator_tag*
|
||||
)
|
||||
{
|
||||
return first == last ? false
|
||||
: sprout::detail::any_of_equal_impl_ra(first, last, value, NS_SSCRISK_CEL_OR_SPROUT::distance(first, last) / 2)
|
||||
;
|
||||
}
|
||||
|
||||
template<typename InputIterator, typename T>
|
||||
inline SPROUT_CONSTEXPR bool
|
||||
any_of_equal_impl(InputIterator first, InputIterator last, T const& value) {
|
||||
return first == last ? false
|
||||
: *first == value || sprout::detail::any_of_equal_impl(sprout::next(first), last, value)
|
||||
;
|
||||
}
|
||||
template<typename InputIterator, typename T>
|
||||
inline SPROUT_CONSTEXPR bool
|
||||
any_of_equal(
|
||||
InputIterator first, InputIterator last, T const& value,
|
||||
void*
|
||||
)
|
||||
{
|
||||
return sprout::detail::any_of_equal_impl(first, last, value);
|
||||
}
|
||||
} //namespace detail
|
||||
|
||||
//
|
||||
// any_of_equal
|
||||
//
|
||||
// recursion depth:
|
||||
// [first, last) is RandomAccessIterator -> O(log N)
|
||||
// otherwise -> O(N)
|
||||
//
|
||||
template<typename InputIterator, typename T>
|
||||
inline SPROUT_CONSTEXPR bool
|
||||
any_of_equal(InputIterator first, InputIterator last, T const& value) {
|
||||
return first == last ? false
|
||||
: *first == value || sprout::any_of_equal(sprout::next(first), last, value)
|
||||
;
|
||||
typedef typename std::iterator_traits<InputIterator>::iterator_category* category;
|
||||
return sprout::detail::any_of_equal(first, last, value, category());
|
||||
}
|
||||
} // namespace sprout
|
||||
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
#ifndef SPROUT_ALGORITHM_NONE_OF_HPP
|
||||
#define SPROUT_ALGORITHM_NONE_OF_HPP
|
||||
|
||||
#include <iterator>
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/iterator/operation.hpp>
|
||||
#include HDR_ITERATOR_SSCRISK_CEL_OR_SPROUT
|
||||
|
||||
namespace sprout {
|
||||
namespace detail {
|
||||
|
|
|
@ -1,19 +1,73 @@
|
|||
#ifndef SPROUT_ALGORITHM_NONE_OF_EQUAL_HPP
|
||||
#define SPROUT_ALGORITHM_NONE_OF_EQUAL_HPP
|
||||
|
||||
#include <iterator>
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/iterator/operation.hpp>
|
||||
#include HDR_ITERATOR_SSCRISK_CEL_OR_SPROUT
|
||||
|
||||
namespace sprout {
|
||||
namespace detail {
|
||||
template<typename RandomAccessIterator, typename T>
|
||||
inline SPROUT_CONSTEXPR bool
|
||||
none_of_equal_impl_ra(
|
||||
RandomAccessIterator first, RandomAccessIterator last, T const& value,
|
||||
typename std::iterator_traits<RandomAccessIterator>::difference_type pivot
|
||||
)
|
||||
{
|
||||
return pivot == 0 ? !(*first == value)
|
||||
: sprout::detail::none_of_equal_impl_ra(
|
||||
first, sprout::next(first, pivot), value,
|
||||
pivot / 2
|
||||
)
|
||||
&& sprout::detail::none_of_equal_impl_ra(
|
||||
sprout::next(first, pivot), last, value,
|
||||
(NS_SSCRISK_CEL_OR_SPROUT::distance(first, last) - pivot) / 2
|
||||
)
|
||||
;
|
||||
}
|
||||
template<typename RandomAccessIterator, typename T>
|
||||
inline SPROUT_CONSTEXPR bool
|
||||
none_of_equal(
|
||||
RandomAccessIterator first, RandomAccessIterator last, T const& value,
|
||||
std::random_access_iterator_tag*
|
||||
)
|
||||
{
|
||||
return first == last ? true
|
||||
: sprout::detail::none_of_equal_impl_ra(first, last, value, NS_SSCRISK_CEL_OR_SPROUT::distance(first, last) / 2)
|
||||
;
|
||||
}
|
||||
|
||||
template<typename InputIterator, typename T>
|
||||
inline SPROUT_CONSTEXPR bool
|
||||
none_of_equal_impl(InputIterator first, InputIterator last, T const& value) {
|
||||
return first == last ? true
|
||||
: !(*first == value) && sprout::detail::none_of_equal_impl(sprout::next(first), last, value)
|
||||
;
|
||||
}
|
||||
template<typename InputIterator, typename T>
|
||||
inline SPROUT_CONSTEXPR bool
|
||||
none_of_equal(
|
||||
InputIterator first, InputIterator last, T const& value,
|
||||
void*
|
||||
)
|
||||
{
|
||||
return sprout::detail::none_of_equal_impl(first, last, value);
|
||||
}
|
||||
} //namespace detail
|
||||
|
||||
//
|
||||
// none_of_equal
|
||||
//
|
||||
// recursion depth:
|
||||
// [first, last) is RandomAccessIterator -> O(log N)
|
||||
// otherwise -> O(N)
|
||||
//
|
||||
template<typename InputIterator, typename T>
|
||||
inline SPROUT_CONSTEXPR bool
|
||||
none_of_equal(InputIterator first, InputIterator last, T const& value) {
|
||||
return first == last ? true
|
||||
: !(*first == value) && sprout::none_of_equal(sprout::next(first), last, value)
|
||||
;
|
||||
typedef typename std::iterator_traits<InputIterator>::iterator_category* category;
|
||||
return sprout::detail::none_of_equal(first, last, value, category());
|
||||
}
|
||||
} // namespace sprout
|
||||
|
||||
|
|
|
@ -16,9 +16,14 @@ namespace sprout {
|
|||
;
|
||||
}
|
||||
} // namespace detail
|
||||
|
||||
//
|
||||
// one_of_equal
|
||||
//
|
||||
// recursion depth:
|
||||
// [first, last) is RandomAccessIterator -> O(log N)
|
||||
// otherwise -> O(N)
|
||||
//
|
||||
template<typename InputIterator, typename T>
|
||||
inline SPROUT_CONSTEXPR bool
|
||||
one_of_equal(InputIterator first, InputIterator last, T const& value) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue