The Standard Template
Library (STL) is a general library of algorithms and data
structures. All of the STL's
objects
and classes follow the structure convention of C++ templates.
Some of the most useful objects and
methods from the STL are:
vector -
resembles a C++
array, holds objects of the same type, each object can be
accessed by index.
sort - algorithm that
orders a STL container's contents in ascending order.
list - STL container
class comprised of a linked list type data structure by
using iterators.
iterator - functions
like a pointer in STL containers.
find - searches a subrange of elements in a container looking for an element
that matches a specified value.