1、順序容器數組
順序容器是提供可以按順序訪問元素功能的容器。數據結構
array 靜態連續的數組spa
vector 動態連續的數組排序
deque 雙端隊列隊列
forward_list 單向鏈表hash
list 雙向鏈表it
2、關聯容器io
關聯容器經過使用已排序的數據結構,提供O(log n)時間複雜度的快速搜索容器
set 惟一鍵的集合,排序的鍵搜索
map 經過按鍵的鍵-值對的集合,排序,鍵值都是惟一的
multiset collection of keys, sorted by keys
multimap collection of key-value pairs, sorted by keys
3、無序關聯容器
unordered_set collection of unique keys,hashed by keys
unordered_map collection of key-value pairs, hashed by keys, keys are unique
unordered_multiset collection of keys, hashed by keys
unordered_multimap collection of key-value pairs, hashed by keys