  |
Interview with Alex Stepanov - http://www.sgi.com/tech/stl/drdobbs-interview.html
Article in Dr. Dobb's Journal, Issue March 1995. |
  |
C++ and STL: Take Advantage of STL Algorithms by Implementing a Custom Iterator - http://msdn.microsoft.com/msdnmag/issues/01/04/STL/
An Article by Samir Bajaj published in the MSDN Magazine, April 2001. |
  |
Priority Queues and the STL - http://dogma.net/markn/articles/pq_stl/priority.htm
An Article in Dr. Dobb's Journal by Mark Nelson that appeared in January, 1996. |
  |
Standard Library News, Part 2: Sets and Maps - http://www.gotw.ca/publications/mill11.htm
Covers updates and additional information about standard library containers. This article appeared in C++ Report. |
  |
Standard Library News, Part 1: Vectors and Deques - http://www.gotw.ca/publications/mill10.htm
Present news updates about the standard library containers vector, deque, set, multiset, map, and multimap. This article appeared in C++ Report. |
  |
STL Algorithms vs. Hand-Written Loops - http://www.ddj.com/cpp/184401446
Scott Meyers presents yet more motivation to trust the library more than yourself. An article by the Autor of "Effective STL" published in C/C++ Users Journal. |
 |
The Standard Librarian: I/O and Function Objects: Containers of Pointers - http://www.ddj.com/cpp/184403800
Explains how containers of pointers behave, when containers of pointers are useful, and what techniques can be used to manage them. Article by Matthew Austern published in the C/C++ Users Journal. |
 |
What Are Allocators Good For? - http://www.ddj.com/cpp/184403759
An article by Matt Austern, published in C/C++ Users Journal. |
 |
The Standard Librarian: Hash Tables for the Standard Library - http://www.ddj.com/cpp/184403822
An article by Matt Austern in the C/C++ Users Journal. This column gives you an idea of what a proposal for hash tables should look like, by presenting a sample proposal. |
 |
STL and TR1: Part III - http://www.ddj.com/cpp/184402066
With TR1, C++ gets hash tables in the form of the template classes unordered_map, unordered_multimap, unordered_set, and unordered_multiset. |