mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-16 15:14:13 +00:00
porting sscrisk/CEL
This commit is contained in:
parent
ad60c8c530
commit
db20f64991
181 changed files with 2531 additions and 607 deletions
47
sprout/algorithm/search_n.hpp
Normal file
47
sprout/algorithm/search_n.hpp
Normal file
|
@ -0,0 +1,47 @@
|
|||
#ifndef SPROUT_ALGORITHM_SEARCH_N_HPP
|
||||
#define SPROUT_ALGORITHM_SEARCH_N_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/iterator/operation.hpp>
|
||||
|
||||
namespace sprout {
|
||||
// Copyright (C) 2011 RiSK (sscrisk)
|
||||
|
||||
// 25.2.13 Search
|
||||
template<typename ForwardIterator, typename Size, typename T>
|
||||
SPROUT_CONSTEXPR ForwardIterator search_n(
|
||||
ForwardIterator first,
|
||||
ForwardIterator last,
|
||||
Size count,
|
||||
T const& value
|
||||
)
|
||||
{
|
||||
return first == last || count == 0 ? first
|
||||
: sprout::next(first) == last && count > 1 ? last
|
||||
: *first == value
|
||||
&& sprout::search_n(sprout::next(first), last, count - 1, value) == sprout::next(first)
|
||||
? first
|
||||
: sprout::search_n(sprout::next(first), last, count, value)
|
||||
;
|
||||
}
|
||||
|
||||
template<typename ForwardIterator, typename Size, typename T, typename BinaryPredicate>
|
||||
SPROUT_CONSTEXPR ForwardIterator search_n(
|
||||
ForwardIterator first,
|
||||
ForwardIterator last,
|
||||
Size count,
|
||||
T const& value,
|
||||
BinaryPredicate pred
|
||||
)
|
||||
{
|
||||
return first == last || count == 0 ? first
|
||||
: sprout::next(first) == last && count > 1 ? last
|
||||
: *first == value
|
||||
&& sprout::search_n(sprout::next(first), last, count - 1, value, pred) == sprout::next(first)
|
||||
? first
|
||||
: sprout::search_n(sprout::next(first), last, count, value, pred)
|
||||
;
|
||||
}
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_ALGORITHM_SEARCH_N_HPP
|
Loading…
Add table
Add a link
Reference in a new issue