std::ranges::adjacent_find
来自cppreference.com
<tbody>
</tbody>
| 在标头 <algorithm> 定义
|
||
| 调用签名 |
||
template< std::forward_iterator I, std::sentinel_for<I> S, class Proj = std::identity, std::indirect_binary_predicate< std::projected<I, Proj>, std::projected<I, Proj>> Pred = ranges::equal_to > constexpr I adjacent_find( I first, S last, Pred pred = {}, Proj proj = {} ); |
(1) | (C++20 起) |
template< ranges::forward_range R, class Proj = std::identity, std::indirect_binary_predicate< std::projected<ranges::iterator_t<R>, Proj>, std::projected<ranges::iterator_t<R>, Proj>> Pred = ranges::equal_to > constexpr ranges::borrowed_iterator_t<R> adjacent_find( R&& r, Pred pred = {}, Proj proj = {} ); |
(2) | (C++20 起) |
搜索范围 [first, last) 中首次出现的两个连续的相等元素。
1) 用
pred(在以投影 proj 投影后)比较元素。2) 同 (1),但以
r 为源范围,如同以 ranges::begin(r) 为 first 并以 ranges::end(r) 为 last。此页面上描述的函数式实体是算法函数对象(非正式地称为 niebloid),即:
参数
| first, last | - | 要检验的元素范围的迭代器-哨位对 |
| r | - | 要检验的范围 |
| pred | - | 应用到投影后元素的谓词 |
| proj | - | 应用到元素的投影 |
返回值
指向首对等同元素的前一者的迭代器,即首个使得 bool(std::invoke(pred, std::invoke(proj1, *it), std::invoke(proj, *(it + 1)))) 为 true 的 it。
若找不到这种元素,则返回等于 last 的迭代器。
复杂度
准确应用 min((result - first) + 1, (last - first) - 1) 次谓词与投影,其中 result 是返回值。
可能的实现
struct adjacent_find_fn
{
template<std::forward_iterator I, std::sentinel_for<I> S, class Proj = std::identity,
std::indirect_binary_predicate<
std::projected<I, Proj>,
std::projected<I, Proj>> Pred = ranges::equal_to>
constexpr I operator()(I first, S last, Pred pred = {}, Proj proj = {}) const
{
if (first == last)
return first;
auto next = ranges::next(first);
for (; next != last; ++next, ++first)
if (std::invoke(pred, std::invoke(proj, *first), std::invoke(proj, *next)))
return first;
return next;
}
template<ranges::forward_range R, class Proj = std::identity,
std::indirect_binary_predicate<
std::projected<ranges::iterator_t<R>, Proj>,
std::projected<ranges::iterator_t<R>, Proj>> Pred = ranges::equal_to>
constexpr ranges::borrowed_iterator_t<R>
operator()(R&& r, Pred pred = {}, Proj proj = {}) const
{
return (*this)(ranges::begin(r), ranges::end(r), std::ref(pred), std::ref(proj));
}
};
inline constexpr adjacent_find_fn adjacent_find;
|
示例
运行此代码
#include <algorithm>
#include <functional>
#include <iostream>
#include <ranges>
constexpr bool some_of(auto&& r, auto&& pred) // 一些但非全部
{
return std::ranges::cend(r) != std::ranges::adjacent_find(r,
[&pred](auto const& x, auto const& y)
{
return pred(x) != pred(y);
});
}
// 测试 some_of
constexpr auto a = {0, 0, 0, 0}, b = {1, 1, 1, 0}, c = {1, 1, 1, 1};
auto is_one = [](auto x){ return x == 1; };
static_assert(!some_of(a, is_one) && some_of(b, is_one) && !some_of(c, is_one));
int main()
{
const auto v = {0, 1, 2, 3, 40, 40, 41, 41, 5}; /*
^^ ^^ */
namespace ranges = std::ranges;
if (auto it = ranges::adjacent_find(v.begin(), v.end()); it == v.end())
std::cout << "无匹配的相邻元素\n";
else
std::cout << "相邻的相等元素对中的第一个位于 ["
<< ranges::distance(v.begin(), it) << "] == " << *it << '\n';
if (auto it = ranges::adjacent_find(v, ranges::greater()); it == v.end())
std::cout << "整个 vector 以升序排序\n";
else
std::cout << "非降序子序列中最后一个元素位于 ["
<< ranges::distance(v.begin(), it) << "] == " << *it << '\n';
}
输出:
相邻的相等元素对中的第一个位于 [4] == 40
非降序子序列中最后一个元素位于 [7] == 41
参阅
(C++20) |
移除范围中连续重复元素 (算法函数对象) |
| 查找首对相同(或满足给定谓词)的相邻元素 (函数模板) |