Search⌘ K

Summary

Explore advanced string matching techniques in C++17 by using searchers within std::search for better complexity. Understand how these algorithms improve searching in containers with random access iterators, and compare them with the specialized std::string::find function.

We'll cover the following...

In this chapter, you’ve learned about the searchers that can be passed into std::search algorithm. They allow you to use more advanced algorithms for ...