tags:

views:

316

answers:

6

I want to refresh my STL knowledge before interview. Could anyone recommend good short and freely downloadable STL tutorial? Thank you.

EDIT: Preferably in PDF.

+2  A: 

http://www.sgi.com/tech/stl/

http://www.cplusplus.com/reference/stl/

These are two very good sites for STL reference. For interview I would suggest to refer good book The C++ Standard Library: A Tutorial and Reference by Nicolai M. Josuttis .

aJ
+1 for the book
DaMacc
+1  A: 

some links :
Visual Studio 2005 Technical Articles - STL.NET Primer
The Standard Template Library Tutorial
Dinkum Compleat Libraries - Standard C++ Library
C++ Containers Cheat Sheet
Standard Template Library Programmer's Guide
Understanding STL
Standard C++ Library Reference

lsalamon
The above "Standard C++ Library Reference" link is for VC 6.0, please update the link to the VS 2008 version http://msdn.microsoft.com/en-us/library/ct1as7hw.aspx
Cristian Adam
updated..........
lsalamon
+5  A: 

Its not a book and for free download, but Scott Myers Effective STL in combination with a good STL reference is in my opinion invaluable for an interview preparation.

Georg Fritzsche
+1 - it is an excellent read to get past the "vector, list, tree" view of STL.
peterchen
+1  A: 

STL Pocket Reference from O'Reilly :

Programmers familiar with the Standard Template Library need a small, lightweight memory-aid. That's what the STL Pocket Reference is. It's small, lightweight, and chock-full of information that you can take in at a glance, so you can get on with your work.

ACCU review is: Recommended.

You can download it as PDF for $7.99

Cristian Adam
A: 

I just started picking this up a couple of months ago, I found this website the most useful:

http://www.cppreference.com/wiki/stl/start

Another useful site, especially when I wanted more detail:

http://www.cplusplus.com/reference/stl/

And a couple of people have linked to sgi here, there's a .zip downloadable version of that -- it's not very short, quick, or handy, because essentially you're downloading the site as an archive of html files, but once you get the hang of the containers and algorithms, this is a complete reference for which you don't need the internet.

http://www.sgi.com/tech/stl/download.html

*All three are free.

Vanwaril
+1  A: 

The Apache C++ Standard Library User's Guide is the most tutorial-like downloadable material on STL I know of. It's a pile of HTML files, though.

just somebody