From 67bb27e9f5beec4d8ca0a6c29f045d5f23d6f40f Mon Sep 17 00:00:00 2001 From: Nguyễn Gia Phong Date: Sun, 28 Feb 2021 17:25:57 +0700 Subject: [lang] Reorganize language learning archive --- lang/cpptour/Vector.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 lang/cpptour/Vector.h (limited to 'lang/cpptour/Vector.h') diff --git a/lang/cpptour/Vector.h b/lang/cpptour/Vector.h new file mode 100644 index 0000000..8508503 --- /dev/null +++ b/lang/cpptour/Vector.h @@ -0,0 +1,12 @@ +class Vector { +public: + Vector (int s); + Vector (std::initializer_list); + ~Vector (); + double& operator[] (int i); + int size () noexcept; + void push_back (double); +private: + double* elem; + int sz; +}; -- cgit 1.4.1