Authors (team): Oleksandr Ivaniuk
sudo apt-get install libgtest-dev
mkdir build
cd build
cmake ..
make -j4
Tests:
./tests/vector-tests
./tests/array-tests
./tests/unique-ptr-tests
Also for time measurement:
./vector-array
As we can see my vector is a little bit faster than std::vector. It probably because of fewer count of checks.
Comparison of my vector and std::vector. Smart pointer (only unique ptr)