
- The C Standard Library
- The C Standard Library
- The C++ Standard Library
- C++ Library - Home
- C++ Library - <fstream>
- C++ Library - <iomanip>
- C++ Library - <ios>
- C++ Library - <iosfwd>
- C++ Library - <iostream>
- C++ Library - <istream>
- C++ Library - <ostream>
- C++ Library - <sstream>
- C++ Library - <streambuf>
- C++ Library - <atomic>
- C++ Library - <complex>
- C++ Library - <exception>
- C++ Library - <functional>
- C++ Library - <limits>
- C++ Library - <locale>
- C++ Library - <memory>
- C++ Library - <new>
- C++ Library - <numeric>
- C++ Library - <regex>
- C++ Library - <stdexcept>
- C++ Library - <string>
- C++ Library - <thread>
- C++ Library - <tuple>
- C++ Library - <typeinfo>
- C++ Library - <utility>
- C++ Library - <valarray>
- The C++ STL Library
- C++ Library - <array>
- C++ Library - <bitset>
- C++ Library - <deque>
- C++ Library - <forward_list>
- C++ Library - <list>
- C++ Library - <map>
- C++ Library - <queue>
- C++ Library - <set>
- C++ Library - <stack>
- C++ Library - <unordered_map>
- C++ Library - <unordered_set>
- C++ Library - <vector>
- C++ Library - <algorithm>
- C++ Library - <iterator>
- C++ Programming Resources
- C++ Programming Tutorial
- C++ Useful Resources
- C++ Discussion
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
C++ Algorithm Library - find_first_of() Function
Description
The C++ function std::algorithm::find_first_of() returns an iterator to the first element in the range of (first1,last1) that matches any of the elements in first2,last2. If no such element is found, the function returns last1.
Declaration
Following is the declaration for std::algorithm::find_first_of() function form std::algorithm header.
C++98
template <class ForwardIterator1, class ForwardIterator2> ForwardIterator1 find_first_of(ForwardIterator1 first1, ForwardIterator1 last1, ForwardIterator2 first2, ForwardIterator2 last2);
C++11
template <class InputIterator, class ForwardIterator> ForwardIterator1 find_first_of(InputIterator first1, InputIterator last1, ForwardIterator first2, ForwardIterator last2);
Parameters
first1 − Forward iterator to the initial position of the first sequence.
last1 − Forward iterator to the final position of the first sequence.
first2 − Forward iterator to the initial position of the second sequence.
last2 − Forward iterator to the final position of the second sequence.
Return value
Returns an iterator to the first element in the range of (first1,last1) that matches any of the elements in first2,last2. If no such element is found, the function returns last1.
Exceptions
Throws exception if either element comparison or an operation on an iterator throws exception.
Please note that invalid parameters cause undefined behavior.
Time complexity
Linear.
Example
The following example shows the usage of std::algorithm::find_first_of() function.
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main(void) { vector<int> v1 = {5, 2, 6, 1, 3, 4, 7}; vector<int> v2 = {10, 1}; auto result = find_first_of(v1.begin(), v1.end(), v2.begin(), v2.end()); if (result != v1.end()) cout << "Found first match at location " << distance(v1.begin(), result) << endl; v2 = {11, 13}; result = find_end(v1.begin(), v1.end(), v2.begin(), v2.end()); if (result == v1.end()) cout << "Sequence doesn't found." << endl; return 0; }
Let us compile and run the above program, this will produce the following result −
Found first match at location 3 Sequence doesn't found.