MindMap Gallery The Standard Template Library
This is a mind map that contains information about the standard template library. Start to use a mind map to express and organize your ideas and knowledge right now.
This is a mind map about 3-step Writing Process Business.
This is a mind map about advertising 2.
This is a mind map about SBAR. Let's see!
FILM THEORY
adverbs of frequency
Marketing Coordinator Resume
Production Assistant Resume Samples
Top10 Education Quotes
Party schedule
Personal Resume Examples Designer
Forms of corruption
Pharmacist Resume Samples
Sequences and Series
The Standard Template Library
STL Components
Containers
Iterators
Algorithms
Sequence containers
vector
deque
list
Associative containers
set
multiset
map
multimap
Sequence Containers
Vectors
dynamic array
fast
appending
remove last element
the end of array
slow
insert in the middle
insert at the beginning
remove the middle element
remove the first element
not the end of array
Deque
insert at the end and beginning
remove at the end and beginning
both end of array
insert elements in the middle
remove elements in the middle
in the middle of array
List
double link list
advantage
insertion
removal
disadvantage
navigate
travel
Strings
basic_string<>
string
wstring
Ordinary Arrays
Associative Containers
sets
Container Adapters
Stacks
Queues
Priority Queues
operator*
operator++
operator--
operators== and !=
operator=
Iterator Categories
Bidirectional iterator
Random access iterator
Iterator Adapters
Insert Iterator
front_inserter
back_inserter
inserter
Stream Iterator
Reverse Iterator
Function Objects
for_each
definition
Function objects are "smart functions."
each function object has its own type
function objects are usually faster than ordinary functins
Container elements
requirement for container elements
An element must be copyable by a copy constructor
An element must be assignable by the assignment operator
An element must be destroyable by a destructor
the default constructor must be available
the test of quality with operator == must be defined
for associative containers the operation of the sorting criterion must by provided by the elements.
value semantics or reference semantic
Main Topic