STL容器

          STL中的容器分为:顺序容器,排序容器,哈希容器。其中顺序容器有:vector(向量)、list(列表)、deque(双端队列);排序容器有:set(集合)、map(表)、multiset(多重集合)、multimap(多重表);哈希容器有:hash_set、hash_map、hash_multiset、hash_multimap;

        STL中vector是用数组实现的,

你可能感兴趣的:(STL容器)