The Standard Template Libraries (STL's) are a set of C++ template classes to provide common programming
data structures and functions such as doubly linked lists (list),
paired arrays (map), expandable arrays (vector), large string storage
and manipulation (rope), etc.
The STL library is available from the
STL home page.
This is also your best detailed reference for all of the STL class functions available.
bitset: Contains a more intuitive method of storing and manipulating bits.
Operations/Utilities:
iterator: (examples in this tutorial) STL class to
represent position in an STL container. An iterator is declared to be
associated with a single container class type.
algorithm: Routines to find, count, sort, search, ... elements in container classes
auto_ptr: Class to manage memory pointers and avoid memory leaks.
Loop by index:
The number is 10
The number is 20
The number is 30
Constant Iterator:
The number is 10
The number is 20
The number is 30
Reverse Iterator:
The number is 30
The number is 20
The number is 10
Sample Output:
3
The number is 30
The number is 10
[Potential Pitfall]:
Note that the iterator is compared to the end of the vector with "!=".
Do not use "<" as this is not a valid comparison and may or may not work.
The use of "!=" will always work.
Two / Three / Multi Dimensioned arrays using vector:
A two dimensional array is a vector of vectors.
The vector contructor can initialize the length of the array and set the
initial value.
Example of a vector of vectors to represent a two dimensional array:
[Potential Pitfall]: In Red Hat Linux versions 7.x
one could omit the "using namespace std;" statement. Use of this
statement is good programming practice and is required in Red Hat 8.0 and later.
[Potential Pitfall]: Red Hat 8.0 and later requires
the reference to "#include <iostream>". Red Hat versions 7.x
used "#include <iostream.h>".
2) Storing objects:
The following example stores a class object in a doubly linked list.
In order for a class to be stored in an STL container, it must have a default constructor, the class must be assignable, less than comparable and equality comparable.
Since we are storing class objects and we are not using defined built-in C++ types we
have therefore included the following:
To make this example more complete, a copy constructor has been included
although the compiler will generate a member-wise one automatically if needed.
This has the same functionality as the assignment operator (=).
The assignment (=) operator must be specified so that sort routines can
assign a new order to the members of the list.
The "less than" (<) operator must be specified so that sort routines can determine
if one class instance is "less than" another.
The "equals to" (==) operator must be specified so that sort routines can determine
if one class instance is "equals to" another.
The C++ Standard Library: A Tutorial and Reference
Nicolai M. Josuttis
ISBN #0201379260, Addison Wesley Longman
This book is the only book I have seen which covers string classes as
implemented by current Linux distributions.
It also offers a fairly complete coverage of the C++ Standard Template
Library (STL). Good reference book.
STL for C++ programmers
Leen Ammeraal
ISBN #0 471 97181 2, John Wiley & Sons Ltd.
Short book which teaches C++ Standard Template Library (STL) by example.
Not as great as a reference but is the best at introducing all the concepts
necessary to grasp STL completely and good if you want to learn STL quickly.
This book is easy to read and follow.
Data Structures with C++ Using STL
William Ford, Willaim Topp
ISBN #0130858501, Prentice Hall
STL Tutorial and Reference Guide: C++ Programming with the Standard Template Library
David R. Musser, Gillmer J. Derge, Atul Saini
ISBN #0201379236, Addison-Wesley Publications
The C++ Templates: The complete guide.
David Vandevoorde, Nicolai Josuttis
ISBN #0201734842, Addison Wesley Pub Co.
Covers complex use of C++ Templates.
C++ How to Program
by Harvey M. Deitel, Paul J. Deitel
ISBN #0131857576, Prentice Hall
Fifth edition.
The first edition of this book (and Professor Sheely at UTA) taught me to
program C++. It is complete and covers all the nuances of the C++ language.
It also has good code examples. Good for both learning and reference.