std::find_end
在头文件中定义 <algorithm> |
||
template< class ForwardIt1, class ForwardIt2 > ForwardIt1 find_end( ForwardIt1 first, ForwardIt1 last, |
(1) | (从 C++20 开始为 constexpr) |
template< class ExecutionPolicy, class ForwardIt1, class ForwardIt2 > ForwardIt1 find_end( ExecutionPolicy&& policy, |
(2) | (从 C++17 开始) |
template< class ForwardIt1, class ForwardIt2, class BinaryPred > ForwardIt1 find_end( ForwardIt1 first, ForwardIt1 last, |
(3) | (从 C++20 开始为 constexpr) |
template< class ExecutionPolicy, class ForwardIt1, class ForwardIt2, class BinaryPred > |
(4) | (从 C++17 开始) |
在范围 [
first,
last)
中搜索序列 [
s_first,
s_last)
的最后一次出现。
std::is_execution_policy_v<std::decay_t<ExecutionPolicy>> 为 true 时,这些重载才参与重载解析。 |
(直到 C++20) |
std::is_execution_policy_v<std::remove_cvref_t<ExecutionPolicy>> 为 true 时。 |
(从 C++20 开始) |
内容 |
[编辑] 参数
first, last | - | 要检查的元素范围 |
s_first, s_last | - | 要搜索的元素范围 |
policy | - | 要使用的执行策略。有关详细信息,请参见 执行策略。 |
p | - | 二元谓词,如果元素应被视为相等,则返回 true。 谓词函数的签名应等效于以下内容 bool pred(const Type1 &a, const Type2 &b); 虽然签名不需要有 const &,但函数不得修改传递给它的对象,并且必须能够接受类型 (可能为 const) |
类型要求 | ||
-ForwardIt1 必须满足 LegacyForwardIterator 的要求。 | ||
-ForwardIt2 必须满足 LegacyForwardIterator 的要求。 |
[编辑] 返回值
指向序列 [
s_first,
s_last)
在范围 [
first,
last)
中最后一次出现的开始位置的迭代器。
如果 [
s_first,
s_last)
为空或未找到此类序列,则返回 last。
[编辑] 复杂度
假设 N 为 std::distance(first, last),S 为 std::distance(s_first, s_last)
[编辑] 异常
具有名为 ExecutionPolicy
的模板参数的重载函数报告错误的方式如下:
- 如果作为算法一部分调用的函数执行时抛出异常,并且
ExecutionPolicy
是 标准策略 之一,则调用 std::terminate。对于任何其他ExecutionPolicy
,行为是实现定义的。 - 如果算法无法分配内存,则抛出 std::bad_alloc。
[编辑] 可能的实现
find_end (1) |
---|
template<class ForwardIt1, class ForwardIt2> constexpr //< since C++20 ForwardIt1 find_end(ForwardIt1 first, ForwardIt1 last, ForwardIt2 s_first, ForwardIt2 s_last) { if (s_first == s_last) return last; ForwardIt1 result = last; while (true) { ForwardIt1 new_result = std::search(first, last, s_first, s_last); if (new_result == last) break; else { result = new_result; first = result; ++first; } } return result; } |
find_end (3) |
template<class ForwardIt1, class ForwardIt2, class BinaryPred> constexpr //< since C++20 ForwardIt1 find_end(ForwardIt1 first, ForwardIt1 last, ForwardIt2 s_first, ForwardIt2 s_last, BinaryPred p) { if (s_first == s_last) return last; ForwardIt1 result = last; while (true) { ForwardIt1 new_result = std::search(first, last, s_first, s_last, p); if (new_result == last) break; else { result = new_result; first = result; ++first; } } return result; } |
[编辑] 示例
#include <algorithm> #include <array> #include <cmath> #include <iostream> auto print_result = [](auto result, const auto& v) { result == v.end() ? std::cout << "Sequence not found\n" : std::cout << "Last occurrence is at: " << std::distance(v.begin(), result) << '\n'; }; int main() { const auto v = {1, 2, 3, 4, 1, 2, 3, 4, 1, 2, 3, 4}; for (auto const& x : {std::array{1, 2, 3}, {4, 5, 6}}) { auto iter = std::find_end(v.begin(), v.end(), x.begin(), x.end()); // overload (1) print_result(iter, v); } for (auto const& x : {std::array{-1, -2, -3}, {-4, -5, -6}}) { auto iter = std::find_end(v.begin(), v.end(), x.begin(), x.end(), // overload (3) [](int x, int y) { return std::abs(x) == std::abs(y); }); print_result(iter, v); } }
输出
Last occurrence is at: 8 Sequence not found Last occurrence is at: 8 Sequence not found
[编辑] 缺陷报告
以下更改行为的缺陷报告已追溯应用于先前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确行为 |
---|---|---|---|
LWG 1205 | C++98 | 如果 [ s_first, s_last) 为空,则返回值不清楚 |
在这种情况下返回 last |
LWG 2150 | C++98 | “序列出现” 的条件不正确 | 已更正 |
[编辑] 另请参阅
搜索元素范围的第一个出现位置 (函数模板) | |
如果一个序列是另一个序列的子序列,则返回 true (函数模板) | |
查找第一个相邻的相等项(或满足给定谓词的项) (函数模板) | |
(C++11) |
查找满足特定条件的第一个元素 (函数模板) |
搜索一组元素中的任何一个 (函数模板) | |
在范围内搜索一个元素的连续副本的第一个出现位置 (函数模板) | |
(C++20) |
查找特定范围内的最后一个元素序列 (niebloid) |