Algorithms
Lesson 4 of 23 in Coddy's C++ - Standard Template Library course.
Algorithms in STL represent a collection of functions that are used on containers to perform a specific task, such as initialization, sorting, searching and transforming the contents of a container.
There are more types of algorithms, such as:
- Modifying Algorithms
- Sorting Algorithms
- Searching Algorithms
- Numeric Algorithms
You are only going to be introduced to and learn about algorithms commonly used in C++ programs. Many of them include different ways of sorting an array, or searching for a specific element in a given array and many more.
Try it yourself
This lesson doesn't include a code challenge.