What's the Time Complexity of search() function in case of vectors?

Viewed 12

what is the time complexity of the search() function in case of vectors?

auto it = std::search(v2.begin(), v2.end(), v1.begin(), v1.end());
0 Answers
Related