C++算法search()函数在范围[first1,last1)中搜索范围[first2,last2)定义的子序列的出现,返回指向第一个元素的迭代器。如果子序列不存在,则返回指向 last1 的迭代器。
用法
template<class ForwardIterator1, class ForwardIterator2> ForwardIterator1 search (ForwardIterator1 first1, ForwardIterator last1, ForwardIterator2 first2, ForwardIterator2 last2);
template<class ForwardIterator1, class ForwardIterator2, class BinaryPredicate> ForwardIterator1 search(ForwardIterator1 first1, ForwardIterator1 last1, ForwardIterator2 first2, ForwardIterator2 last2, BinaryPredicate pred);
参数
first1:它是到[first1,last1)第一个元素的前向迭代器。
last1:它是到 [first1, last1) 的最后一个元素的前向迭代器。
first2:它是一个到[first2,last2)的第一个元素的前向迭代器。
pred: 它是一个二元函数,它接受两个元素作为参数并执行函数设计的任务。
返回值
该函数返回一个迭代器,指向子序列第一次出现的第一个元素,否则返回 last1 元素。
例子1
#include <iostream>
#include <algorithm>
#include <vector>
bool newpredicate (int m, int n)
{
return (m==n);
}
int main ()
{
std::vector<int> haystack;
for (int a=1; a<10; a++) haystack.push_back(a*10);
int patt1[] = {20,30,40,50};
std::vector<int>::iterator ti;
ti = std::search (haystack.begin(), haystack.end(), patt1, patt1+4);
if (ti!=haystack.end())
std::cout << "patt1 found at position " << (ti-haystack.begin()) << '\n';
else
std::cout << "patt1 not found\n";
int patt2[] = {40,35,50};
ti = std::search (haystack.begin(), haystack.end(), patt2, patt2+3, newpredicate);
if (ti!=haystack.end())
std::cout << "patt2 found at position " << (ti-haystack.begin()) << '\n';
else
std::cout << "patt2 not found\n";
return 0;
}
输出:
patt1 found at position 1 patt2 not found
例子2
#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
int main()
{
int m, n;
vector <int> u1={1,2,3,4,5,6,7};
vector <int> u2={3,4,5};
vector<int>::iterator ti;
ti = std::search(u1.begin(), u1.end(), u2.begin(),u2.end());
if(ti!=u1.end())
{
cout<<"Vector2 is present at index:"<<(ti-u1.begin());
}
else
{
cout<<"In vector1, vector2 is not present";
}
return 0;
}
输出:
Vector2 is present at index:2
复杂度
该函数从 first1 元素到 last1 元素具有线性复杂度。
数据竞争
访问两个范围内的对象。
异常
如果任何参数抛出异常,该函数将抛出异常。
相关用法
- C++ search_n()用法及代码示例
- C++ set rbegin()用法及代码示例
- C++ set upper_bound()用法及代码示例
- C++ set swap()用法及代码示例
- C++ set::rbegin()、set::rend()用法及代码示例
- C++ set size()用法及代码示例
- C++ set lower_bound()用法及代码示例
- C++ set::begin()、set::end()用法及代码示例
- C++ set erase()用法及代码示例
- C++ set find()用法及代码示例
- C++ set end()用法及代码示例
- C++ set cbegin()用法及代码示例
- C++ set key_comp()用法及代码示例
- C++ set equal_range()用法及代码示例
- C++ set::lower_bound()用法及代码示例
- C++ set::erase()用法及代码示例
- C++ set rend()用法及代码示例
- C++ set::size()用法及代码示例
- C++ set clear()用法及代码示例
- C++ set begin()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Algorithm Function search()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。