Dynamic Array Implementation in C++ (Data Structures: Containers Ep. 2)

Опубликовано: 27 Март 2026
на канале: Daniel Blagy
214
8

Code (github repo): https://github.com/danielblagy/Contai...
Containers Series Playlist:    • Data Structures in C++  

How To Implement Dynamic Array in C++

Here my quick & simple implementation of dynamic array (DIY std::vector) in c++.
It's a template class and it has the basic features a dynamic array should be able to provide, such as pushing elements, removing elements, querying the current size, and accessing the elements.

Timestamps
00:00 Intro
00:52 Implementation
13:12 Test Program