The Standard Template Library Programmers Guide for C++
The Standard Template Library, or STL, is a C++ (cplusplus)library
of container classes, algorithms, and iterators; it provides many of
the basic algorithms and data structures of computer science. The STL
is a generic
library, meaning that its components are heavily parameterized: almost
every component in the STL is a template. You should make sure that you
understand how templates work in C++ before you use the STL. The Standard Template Library Programmer's Guide
will show you how to use these classes, algorithms and iterators when
coding in the C++ programming language. You can download the full manual, and also available are Frequently Asked Questions to help and guide you.
The Standard Template Library Programmer's Guide
- Introduction to the STL
- How to use the documentation
- Containers
- Concepts
- General concepts
- Sequences
- Associative Containers
- Associative Container
- Simple Associative Container
- Pair Associative Container
- Sorted Associative Container
- Hashed Associative Container
- HashFunction
- Unique Associative Container
- Multiple Associative Container
- Unique Sorted Associative Container
- Multiple Sorted Associative Container
- Unique Hashed Associative Container
- Multiple Hashed Associative Container
- Container classes
- Concepts
- Iterators
- Introduction
- Concepts
- Iterator Tags
- Introduction
- iterator_traits
- iterator_category
- distance_type
- value_type
- Iterator tag classes
- Iterator base classes
- Iterator functions
- Iterator classes
- Algorithms
- Non-mutating algorithms
- Mutating algorithms
- Sorting
- Sort
- nth_element
- Binary search
- merge
- inplace_merge
- Set operations on sorted ranges
- Heap operations
- Minimum and maximum
- lexicographical_compare
- lexicographical_compare_3way
- next_permutation
- prev_permutation
- Generalized numeric algorithms
- Function Objects
- Introduction
- Concepts
- Predefined function objects
- Arithmetic operations
- Comparisons
- Logical operations
- Generalized identity operations
- subtractive_rng
- Function object adaptors
- Utilities
- Concepts
- Functions
- Classes
- Memory Allocation
- Design documents
- Categorized Index
- Full Index
Popularity: 16% [?]
Related Posts:





























