The first test that is performed is to fill the data structures by adding elements to the back of the container (usingpush_back). Two variations of vector are used,vector_prebeing a std::vector using vector::reserve at the beginning, resulting in only one allocation of memory. Lets see t...