函数模板
<algorithm>

std::search_n

相等 (1)
template <class ForwardIterator, class Size, class T>   ForwardIterator search_n (ForwardIterator first, ForwardIterator last,                             Size count, const T& val);
谓词 (2)
template <class ForwardIterator, class Size, class T, class BinaryPredicate>   ForwardIterator search_n ( ForwardIterator first, ForwardIterator last,                              Size count, const T& val, BinaryPredicate pred );
搜索元素的范围
在范围 [first,last) 中搜索一个由 count 个元素组成的序列,其中每个元素都等于 val(或者 pred 返回 true)。

如果找到这样的序列,函数将返回指向该序列第一个元素的迭代器;否则,返回 last

此函数模板的行为等同于
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
template<class ForwardIterator, class Size, class T>
  ForwardIterator search_n (ForwardIterator first, ForwardIterator last,
                            Size count, const T& val)
{
  ForwardIterator it, limit;
  Size i;

  limit=first; std::advance(limit,std::distance(first,last)-count);

  while (first!=limit)
  {
    it = first; i=0;
    while (*it==val)       // or: while (pred(*it,val)) for the pred version
      { ++it; if (++i==count) return first; }
    ++first;
  }
  return last;
}

参数

first, last
指向被搜索序列的初始和末尾位置的正向迭代器。使用的范围是 [first,last),它包含 firstlast 之间的所有元素,包括 first 指向的元素,但不包括 last 指向的元素。
count
要匹配的连续元素的最小数量。
Size 必须是(可转换为)整数类型。
val
要比较的单个值,或用作 pred 的参数(在第二个版本中)。
对于第一个版本,T 必须是支持与 InputIterator 所指向元素进行比较的类型,使用 operator==(其中序列中的元素是左侧操作数,val 是右侧操作数)。
pred
二元函数,接受两个参数(序列中的一个元素作为第一个参数,val 作为第二个参数),并返回一个可转换为 bool 的值。返回值指示该元素在此函数上下文中是否被视为匹配。
该函数不得修改其任何参数。
这可以是一个函数指针或一个函数对象。

返回值

指向序列第一个元素的迭代器。
如果未找到这样的序列,函数将返回 last

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// search_n example
#include <iostream>     // std::cout
#include <algorithm>    // std::search_n
#include <vector>       // std::vector

bool mypredicate (int i, int j) {
  return (i==j);
}

int main () {
  int myints[]={10,20,30,30,20,10,10,20};
  std::vector<int> myvector (myints,myints+8);

  std::vector<int>::iterator it;

  // using default comparison:
  it = std::search_n (myvector.begin(), myvector.end(), 2, 30);

  if (it!=myvector.end())
    std::cout << "two 30s found at position " << (it-myvector.begin()) << '\n';
  else
    std::cout << "match not found\n";

  // using predicate comparison:
  it = std::search_n (myvector.begin(), myvector.end(), 2, 10, mypredicate);

  if (it!=myvector.end())
    std::cout << "two 10s found at position " << int(it-myvector.begin()) << '\n';
  else
    std::cout << "match not found\n";

  return 0;
}

输出
Two 30s found at position 2
Two 10s found at position 5



复杂度

最多线性于 firstlast 之间的 距离:比较元素直到找到匹配的子序列。

数据竞争

范围 [first,last) 中的一些(或全部)对象被访问(最多一次)。

异常

如果任何元素比较(或 pred)抛出异常,或者任何迭代器操作抛出异常,则抛出异常。
请注意,无效的参数会导致 *未定义行为*。

另见