Difference between revisions of "cpp/algorithm/find first of"
m (r2.7.3) (Robot: Adding de, es, fr, it, ja, pt, zh) |
m (Shorten template names. Use {{lc}} where appropriate.) |
||
Line 1: | Line 1: | ||
{{cpp/title|find_first_of}} | {{cpp/title|find_first_of}} | ||
{{cpp/algorithm/navbar}} | {{cpp/algorithm/navbar}} | ||
− | {{ | + | {{dcl begin}} |
− | {{ | + | {{dcl header | algorithm}} |
− | {{ | + | {{dcl | num=1 | notes={{mark until c++11}}<br><br><br>{{mark since c++11}} | |
template< class ForwardIt1, class ForwardIt2 > | template< class ForwardIt1, class ForwardIt2 > | ||
ForwardIt1 find_first_of( ForwardIt1 first, ForwardIt1 last, | ForwardIt1 find_first_of( ForwardIt1 first, ForwardIt1 last, | ||
Line 11: | Line 11: | ||
ForwardIt s_first, ForwardIt s_last ); | ForwardIt s_first, ForwardIt s_last ); | ||
}} | }} | ||
− | {{ | + | {{dcl | num=2 | notes={{mark until c++11}}<br><br><br>{{mark since c++11}} | |
template< class ForwardIt1, class ForwardIt2, class BinaryPredicate > | template< class ForwardIt1, class ForwardIt2, class BinaryPredicate > | ||
ForwardIt1 find_first_of( ForwardIt1 first, ForwardIt1 last, | ForwardIt1 find_first_of( ForwardIt1 first, ForwardIt1 last, | ||
Line 19: | Line 19: | ||
ForwardIt s_first, ForwardIt s_last, BinaryPredicate p ); | ForwardIt s_first, ForwardIt s_last, BinaryPredicate p ); | ||
}} | }} | ||
− | {{ | + | {{dcl end}} |
Searches the range {{tt|[first, last)}} for any of the elements in the range {{tt|[s_first, s_last)}}. The first version uses {{tt|operator{{==}}}} to compare the elements, the second version uses the given binary predicate {{tt|p}}. | Searches the range {{tt|[first, last)}} for any of the elements in the range {{tt|[s_first, s_last)}}. The first version uses {{tt|operator{{==}}}} to compare the elements, the second version uses the given binary predicate {{tt|p}}. | ||
===Parameters=== | ===Parameters=== | ||
− | {{ | + | {{par begin}} |
− | {{ | + | {{par | first, last | the range of elements to examine}} |
− | {{ | + | {{par | s_first, s_last | the range of elements to search for}} |
− | {{ | + | {{par pred2 eq | p | p1=ForwardIt1 | p2=ForwardIt2}} |
− | {{ | + | {{par hreq}} |
− | {{ | + | {{par req concept | InputIt | InputIterator}} |
− | {{ | + | {{par req concept | ForwardIt1 | ForwardIterator}} |
− | {{ | + | {{par req concept | ForwardIt2 | ForwardIterator}} |
− | {{ | + | {{par end}} |
===Return value=== | ===Return value=== | ||
Line 100: | Line 100: | ||
===See also=== | ===See also=== | ||
− | {{ | + | {{dsc begin}} |
− | {{ | + | {{dsc inc | cpp/algorithm/dcl list find}} |
− | {{ | + | {{dsc end}} |
[[de:cpp/algorithm/find first of]] | [[de:cpp/algorithm/find first of]] |
Revision as of 17:46, 31 May 2013
Defined in header <algorithm>
|
||
template< class ForwardIt1, class ForwardIt2 > ForwardIt1 find_first_of( ForwardIt1 first, ForwardIt1 last, |
(1) | (until C++11) (since C++11) |
template< class ForwardIt1, class ForwardIt2, class BinaryPredicate > ForwardIt1 find_first_of( ForwardIt1 first, ForwardIt1 last, |
(2) | (until C++11) (since C++11) |
Searches the range [first, last)
for any of the elements in the range [s_first, s_last)
. The first version uses operator==
to compare the elements, the second version uses the given binary predicate p
.
Contents |
Parameters
first, last | - | the range of elements to examine |
s_first, s_last | - | the range of elements to search for |
p | - | binary predicate which returns true if the elements should be treated as equal. The signature of the predicate function should be equivalent to the following: bool pred(const Type1 &a, const Type2 &b); While the signature does not need to have const &, the function must not modify the objects passed to it and must be able to accept all values of type (possibly const) |
Type requirements
Template:par req concept Template:par req concept Template:par req concept |
Return value
Iterator to the first element in the range [first, last)
that is equal to an element from the range [s_first; s_last)
. If no such element is found, last
is returned.
Complexity
Does at most (S*N)
comparisons where S = distance(s_first, s_last) and N = distance(first, last).
Possible implementation
First version |
---|
template<class InputIt, class ForwardIt> InputIt find_first_of(InputIt first, InputIt last, ForwardIt s_first, ForwardIt s_last) { for (; first != last; ++first) { for (ForwardIt it = s_first; it != s_last; ++it) { if (*first == *it) { return first; } } } return last; } |
Second version |
template<class InputIt, class ForwardIt, class BinaryPredicate> InputIt find_first_of(InputIt first, InputIt last, ForwardIt s_first, ForwardIt s_last, BinaryPredicate p) { for (; first != last; ++first) { for (ForwardIt it = s_first; it != s_last; ++it) { if (p(*first, *it)) { return first; } } } return last; } |
Example
The following code searches for any of specified integers in a vector of integers:
#include <algorithm> #include <iostream> #include <vector> int main() { std::vector<int> v{0, 2, 3, 25, 5}; std::vector<int> t{3, 19, 10, 2}; auto result = std::find_first_of(v.begin(), v.end(), t.begin(), t.end()); if (result == v.end()) { std::cout << "no elements of v were equal to 3, 19, 10 or 2\n"; } else { std::cout << "found a match at " << std::distance(v.begin(), result) << "\n"; } }
Output:
found a match at 1