February 2022
Beginner
848 pages
22h 40m
English
An important part of the Standard Template Library (STL) is a set of generic functions, supplied by the header <algorithm>, that help manipulate or work with the contents of a container.
In this lesson, you learn:
■ Algorithms that help count, search, find, copy, and remove elements from a container
■ How to set values in a range of elements to the return value of a generator function or a predefined constant
■ How to sort or partition elements in a range
■ How to insert elements at the correct position in a sorted range
■ C++20 constrained algorithms
Finding, searching, removing, and counting are some generic algorithmic activities that find application in a broad range of programs. ...
Read now
Unlock full access