-
-
-
-
-
MFCIteratorDemo.zip
这个项目演示了STL风格的迭代子,如何编写自己的迭代子,使用容器来简化STL,并与STL兼容。在这个例子中使用的容器是MFC框架应用程序,文档模板,文档类CWinApp,
-
C++_src.zip
The files in this directory are the source code for all examples in D.R. Musser, G.J. Derge, and Atul Saini, STL Tutorial and Reference Guide, Second Edition: C++ Programming with the Standard Template Library (Boston, MA: Addison-Wesley, 2001).
-
alg2.rar
test program for STL generic algorithm that search for elements that satisfy a condition
-
-
-
-
C-STL.rar
C语言标准库,包括一些函数的用法和特点,例如:C 常用字符串处理函数及使用示例
char *strncat(char *s1, const char *s2, size_t n)
将字符串s2中最多n个字符添加到字符串s1的后面。s2的第一个字符重定义s1的null终止符。返回s1的值 
int strcmp(const char *s1, const char *s2)
比较字符串s1和字符串s2。函数在s1等于、小于或大于s2时分别返回0、小于0或大于0的值  ...
-