.

STL Tutorial in C++

The STL is standard Template Library is the concept which has set of c++ template classes that provide the general purpose classes and the template which implement many algorithms and data structures like vectors, lists, stacks and Queues.

There are three different components in the Standard Template Library. They are described as follows.

Containers

Containers are used to manage collections of objects of a certain kind.

There are several different types of containers like dequeue, list, vector, map etc.

Algorithms


STL Tutorial in C++ provided By Online Tutoring and Guided Sessions from assignmenthippo.com


Algorithms act on containers. They provide the means by which you will perform initialization, sorting, searching, and transforming of the contents of containers.

Iterators

Iterators are used to step through the elements of collections of objects.

These collections may be containers or subsets of containers.

.