ACM常用STL容器

时间:2021-01-12 05:13:23
 // STL(标准模板库),由三大部分组成:容器,算法,迭代器

 // STL六大组件:container(容器),algorthm(算法),iterator(迭代器)
// function object(仿函数),adaptor(适配器),allocator(空间适配器) // STL容器 // vector
// deque(双端数组)
// stack
// queue
// list(链表模型)
// priotry_queue优先级队列
// set
// multiset
// map
// multimap