From d7a7fdbd311ee9a7c1b047aa2ab28deb79d229b3 Mon Sep 17 00:00:00 2001 From: Mohit Chandra Kukunoori Date: Mon, 15 Oct 2018 17:43:47 +0530 Subject: [PATCH] Created index.md under stl-algorithms directory (#19225) Created STL-Algorithms folder along with index.md --- .../guide/english/cplusplus/stl-algorithms/index.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 client/src/pages/guide/english/cplusplus/stl-algorithms/index.md 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 00000000000..efcabfa87ac --- /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)