freeCodeCamp/guide/english/cplusplus/stl-algorithms/index.md

14 lines
568 B
Markdown
Raw Normal View History

---
title: STL Algorithms
---
## STL Algorithms
2018-11-15 05:58:06 +00:00
STL stands for Standard Template Library. It consists various containers like Vectors, Stacks, Queues etc. It also consists of some commonly used algorithms like sorting, counting etc. The image below shows the quick outline of STL. We will discuss the algorithms part.
![STL Outlook](https://i.imgur.com/daIlXQI.png "STL-Outlook")
### References:
1. [GeeksForGeeks - STL Tutorial](https://www.geeksforgeeks.org/cpp-stl-tutorial/)
2. [Alibaba Cloud - Quick STL Tutorial](https://www.alibabacloud.com/forum/read-531)