diff --git a/client/src/pages/guide/english/cplusplus/stl-algorithms/index.md b/client/src/pages/guide/english/cplusplus/stl-algorithms/index.md new file mode 100644 index 0000000000..efcabfa87a --- /dev/null +++ b/client/src/pages/guide/english/cplusplus/stl-algorithms/index.md @@ -0,0 +1,13 @@ +--- +title: STL Algorithms +--- + +## STL Algorithms + +STL stands for Standard Template Library. It consists various containers like Vectors,Stack,Queue etc. It also consists of some commonly used algorithms like sorting,count etc. The below image 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)