Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 447 Bytes

File metadata and controls

30 lines (24 loc) · 447 Bytes

Overview of STL containers

Sequence containers

  • std::array
  • std::vector
  • std::list
  • std::forward_list
  • std::deque

Container adaptors

  • std::stack
  • std::queue
  • std::priority_queue

Associative containers

  • std::set
  • std::multiset
  • std::map
  • std::multimap

Unordered associative containers

  • unordered_set
  • unordered_multiset
  • unordered_map
  • unordered_multimap

Standard non-containers

  • std::bitset
  • std::vector