描述
C++ 函数std::algorithm::find_end()查找元素的最后一次出现。它用二元谓词用于比较。
声明
以下是 std::algorithm::find_end() 函数形式 std::algorithm 头文件的声明。
C++98
template <class ForwardIterator1, class ForwardIterator2, class BinaryPredicate> ForwardIterator1 find_end(ForwardIterator1 first1, ForwardIterator1 last1, ForwardIterator2 first2, ForwardIterator2 last2,BinaryPredicate pred);
参数
first1- 将迭代器转发到第一个序列的初始位置。
last1- 将迭代器转发到第一个序列的最终位置。
first2- 将迭代器转发到第二个序列的初始位置。
last2- 将迭代器转发到第二个序列的最终位置。
pred- 一个二元谓词,它接受两个参数并返回 bool。
返回值
返回一个迭代器到最后一次出现的第一个元素(first2,last2)在第一个,最后一个。
异常
如果元素比较或迭代器上的操作抛出异常,则抛出异常。
请注意无效的参数会导致未定义的行为。
时间复杂度
线性。
示例
下面的例子展示了 std::algorithm::find_end() 函数的用法。
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
bool binary_pred(int a, int b) {
return (a==b);
}
int main(void) {
vector<int> v1 = {1, 2, 1, 2, 1, 2};
vector<int> v2 = {1, 2};
auto result = find_end(v1.begin(), v1.end(), v2.begin(), v2.end(), binary_pred);
if (result != v1.end())
cout << "Last sequence found at location "
<< distance(v1.begin(), result) << endl;
v2 = {1, 3};
result = find_end(v1.begin(), v1.end(), v2.begin(), v2.end(), binary_pred);
if (result == v1.end())
cout << "Sequence doesn't present in vector." << endl;
return 0;
}
让我们编译并运行上面的程序,这将产生以下结果 -
Last sequence found at location 4 Sequence doesn't present in vector.
相关用法
- C++ Algorithm find_if_not()用法及代码示例
- C++ Algorithm find_first_of()用法及代码示例
- C++ Algorithm find_if()用法及代码示例
- C++ Algorithm find()用法及代码示例
- C++ Algorithm fill()用法及代码示例
- C++ Algorithm fill_n()用法及代码示例
- C++ Algorithm for_each()用法及代码示例
- C++ Algorithm copy()用法及代码示例
- C++ Algorithm remove_if()用法及代码示例
- C++ Algorithm remove()用法及代码示例
- C++ Algorithm max_element()用法及代码示例
- C++ Algorithm equal()用法及代码示例
- C++ Algorithm set_union()用法及代码示例
- C++ Algorithm next_permutation()用法及代码示例
- C++ Algorithm upper_bound()用法及代码示例
- C++ Algorithm minmax()用法及代码示例
- C++ Algorithm remove_copy_if()用法及代码示例
- C++ Algorithm pop_heap()用法及代码示例
- C++ Algorithm adjacent_find()用法及代码示例
- C++ Algorithm replace_if()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Algorithm Library - find_end() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。