-
SGI-STL V3.3(源代码)
- STL 标准头文件(无扩展名),例如
vector
,deque
,list
... - C++ Standard 定案前,HP 规范的 STL 头文件(扩展名 .h)
- SGI STL 内部私用文件(SGI STL 真正实现于此)
- STL 标准头文件(无扩展名),例如
-
The Annotated STL Sources V3.3(学习源代码的注释)
- 容器 (container) :序列式容器 (sequence container) 和 关联式容器 (associattive container)
- 算法 (algorithm)
- 迭代器 (iterator)
- 仿函数或函数对象 (functor / function object)
- 配接器(adapter)
- 配置器(allocator)
-
SGI-STL Test(代码测试)
SGI STL 被归纳到 GNU C++ 标准程序库中,例如 gcc 使用 4.8.4 版本,STL源码 在 Linux 系统的位置是:/usr/include/c++/4.8.4/bits。
- <<STL 源代码剖析>> 侯捷