ACM常用STL容器
Posted jishuren
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ACM常用STL容器相关的知识,希望对你有一定的参考价值。
1 // STL(标准模板库),由三大部分组成:容器,算法,迭代器 2 3 4 // STL六大组件:container(容器),algorthm(算法),iterator(迭代器) 5 // function object(仿函数),adaptor(适配器),allocator(空间适配器) 6 7 // STL容器 8 9 // vector 10 // deque(双端数组) 11 // stack 12 // queue 13 // list(链表模型) 14 // priotry_queue优先级队列 15 // set 16 // multiset 17 // map 18 // multimap
以上是关于ACM常用STL容器的主要内容,如果未能解决你的问题,请参考以下文章