From f4a5053ff6a8020967cad86ec1b52b5175c91fc3 Mon Sep 17 00:00:00 2001 From: Camille Chauvet Date: Wed, 20 Dec 2023 15:01:05 +0000 Subject: [PATCH] finish --- ex01/src/RPN.cpp | 0 ex01/src/RPN.hpp | 0 ex02/src/main.cpp | 4 ++-- 3 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 ex01/src/RPN.cpp create mode 100644 ex01/src/RPN.hpp diff --git a/ex01/src/RPN.cpp b/ex01/src/RPN.cpp new file mode 100644 index 0000000..e69de29 diff --git a/ex01/src/RPN.hpp b/ex01/src/RPN.hpp new file mode 100644 index 0000000..e69de29 diff --git a/ex02/src/main.cpp b/ex02/src/main.cpp index 6bf7b59..7b6f77c 100644 --- a/ex02/src/main.cpp +++ b/ex02/src/main.cpp @@ -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; } -} \ No newline at end of file +}