STL - container
Posted by Unknown in DataStructure, STL on 2009/11/30
Accoring From http://www.cplusplus.com
Containers replicate structures very commonly used in programming:
dynamic arrays (vector)
queues (queue)
stacks (stack)
heaps (priority_queue)
linked lists (list)
trees (set)
associative arrays (map)...
*stack, queue and priority_queue are implemented as container adaptors.
operation complexity:
http://www.cplusplus.com/reference/stl/
Containers replicate structures very commonly used in programming:
dynamic arrays (vector)
queues (queue)
stacks (stack)
heaps (priority_queue)
linked lists (list)
trees (set)
associative arrays (map)...
*stack, queue and priority_queue are implemented as container adaptors.
operation complexity:
http://www.cplusplus.com/reference/stl/
This entry was posted on 2009/11/30 at 下午2:24 and is filed under DataStructure, STL. You can follow any responses to this entry through the RSS 2.0. You can leave a response.
- No comments yet.