sequence container
container class template in the C++ standard library that implements storage of a sequence of data elements; one of std::array, std::vector, std::list, std::forward_list, std::deque
std::vector
dynamic array container in the C++ standard library
std::list
container in the C++ standard library; implements a linked list