![](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FHGlT4%2FbtsmQqJGJ3u%2FkDESkvRPNA5pgsBEEIscg1%2Fimg.png)
vector std::vector - cppreference.com template class vector; (1) (2) (since C++17) 1) std::vector is a sequence container that encapsulates dynamic size arrays. The elements are stored contiguously, which means that elements can be acces en.cppreference.com cppreference 왈: 동적 크기 배열을 캡슐화하는 시퀀스 컨테이너 크기가 동적으로 변하는 배열이라고 생각하면 편하다. 배열을 선언할 때는 크기를 지정하지만, 벡터는..