Standard Template Library (STL) is a C++ library of container classes,algorithms and iterators.It provides many of the basic algorithms and data structures.
STL is a generic library, meaning that its components are heavily parameterized: almost every component in the STL is a template.
STL can be categorized into the following types:
STL is a generic library, meaning that its components are heavily parameterized: almost every component in the STL is a template.
- sequence containers (vector,qeque,list)
- associative containers (set,multiset,map,multimap)
- container adaptors (queue,priority_queue,stack)
- Other types of containers (bitset,valarray)
No comments:
Post a Comment