
C++
[C++] 직접 만들어보는 std::vector 라이브러리
직접 만들어보는 std::vector 클래스 선행 * 이 코드는 동적 배열을 모방한 것이다. [C++] STL - vector vector 라이브러리 선행 * vector 라이브러리는 STL 중에 하나이다. [C++] STL - Standard Template Library STL - Standard Template Library STL * C++에서 제공하는 표준 라이브러리이다. * STL을 사용해 기본적인 자료구조 licktwice.tistory.com 코드 #include #include using namespace std; template class Vector { public: Vector() { } ~Vector() { if (_data) delete[] _data; } void push_ba..