ACM commonly used STL containers

. 1  // the STL (Standard Template Library), consists of three parts: the container, algorithms, iterators
 2  
. 3  
. 4  // the STL six major components: Container (container), algorthm (algorithm), Iterator (iterators)
 5  // function object (functor), adaptor (adapter), allocator (space adapter)
 . 6  
. 7  // the STL container
 . 8  
. 9  // Vector
 10  // the deque (double-ended array)
 . 11  // Stack
 12 is  // Queue
 13 is  // List ( chain model)
 14  // priotry_queue priority queue
 15  // SET
 16  // multiset
 . 17  // Map
 18 is // multimap

Guess you like

Origin www.cnblogs.com/jishuren/p/12236513.html