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