wangjunstf / wangjunstf.github.io

我的博客。
https://wangjunstf.github.io/
1 stars 0 forks source link

C++ STL标准模版库总结 | 编程之禅 #25

Open wangjunstf opened 3 years ago

wangjunstf commented 3 years ago

https://www.wangjunblogs.com/2021/09/29/c-stl-biao-zhun-mo-ban-ku-zong-jie/

STL 的组成部分模版是C++程序设计语言的一个重要特征,STL 正是基于这一特征,STL 具有强大的功能,同时兼具良好的可扩展性。 STL 分为 3 类:Algorithm(算法)、Container(容器)和Iterator(迭代器),容器和算法通过迭代器可以进行无缝地连接。 STL 由 6 部分组成:容器(Container)、算法(Algorithm)、 迭代器(Iterator)、仿函数