Standard C++ Library Class Reference
Click on the banner to return to the Class Reference home page.
©Copyright 1996 Rogue Wave Software
search, search_n
 Algorithm
Summary
Finds a subsequence within a sequence of values that is element-wise equal to the values in an
indicated range.
Contents
Synopsis● 
Description● 
Complexity● 
Example● 
Warning● 
Synopsis
#include <algorithm>
template <class ForwardIterator1, class ForwardIterator2>
 ForwardIterator1 search (ForwardIterator1 first1,
 ForwardIterator1 last1,
 ForwardIterator2 first2,
 ForwardIterator2 last2);
template <class ForwardIterator1,
 class ForwardIterator2,
 class BinaryPredicate>
 ForwardIterator1 search (ForwardIterator1 first1,
 ForwardIterator1 last1,
 ForwardIterator2 first2,
 ForwardIterator2 last2,










