This commit is contained in:
Camille Chauvet 2023-12-20 15:01:05 +00:00
parent 9699c0c218
commit f4a5053ff6
3 changed files with 2 additions and 2 deletions

0
ex01/src/RPN.cpp Normal file
View File

0
ex01/src/RPN.hpp Normal file
View File

View File

@ -116,6 +116,6 @@ int main(int ac, char** av)
const clock_t time_vec_stop = clock();
std::cout << "Time to process a range of " << array.size() <<" elements with std::vector : " << ((double) (time_vec_stop - time_vec_start) / CLOCKS_PER_SEC) * 1000000 << " us" << std::endl;
std::cout << "Time to process a range of " << array.size() <<" elements with std::deque : " << ((double) (time_vec_stop - time_vec_start) / CLOCKS_PER_SEC) * 1000000 << " us" << std::endl;
}
}
}