《Essential C++》读书笔记 之 泛型编程风格
2014-07-07
Standard Template Library(STL)主要由两种组件构成:
- 一室容器(container),包括vector,list,set,map等类;
- 另一种是用以操作这些容器类的所谓泛型算法(generic algorithm),包括find(),sort(),replace(),merge()等等。
2024-01-03 11:49:10
2014-07-07
Standard Template Library(STL)主要由两种组件构成: