about summary refs log tree commit diff
path: root/cpptour/Vector.cc
diff options
context:
space:
mode:
authorNguyễn Gia Phong <mcsinyx@disroot.org>2021-02-28 17:25:57 +0700
committerNguyễn Gia Phong <mcsinyx@disroot.org>2021-02-28 17:25:57 +0700
commit67bb27e9f5beec4d8ca0a6c29f045d5f23d6f40f (patch)
treeb677228d71b638dd6e423b037311ef0913ba66e7 /cpptour/Vector.cc
parentee9b8fc921f48dc893808e1c9dbfbef321aa362c (diff)
downloadcp-67bb27e9f5beec4d8ca0a6c29f045d5f23d6f40f.tar.gz
[lang] Reorganize language learning archive
Diffstat (limited to 'cpptour/Vector.cc')
-rw-r--r--cpptour/Vector.cc38
1 files changed, 0 insertions, 38 deletions
diff --git a/cpptour/Vector.cc b/cpptour/Vector.cc
deleted file mode 100644
index 8f94345..0000000
--- a/cpptour/Vector.cc
+++ /dev/null
@@ -1,38 +0,0 @@
-#include <stdexcept>
-
-#include "Vector.h"
-
-using namespace std;
-
-Vector::Vector (int s)
-{
-  if (s < 0)
-    throw length_error{"You're being negetive!"};
-  elem = new double[s];
-  sz = s;
-}
-
-Vector::Vector (initializer_list<double> lst)
-: elem {new double[lst.size()]}, sz {static_cast<int> (lst.size())}
-{
-  copy(lst.begin(), lst.end(), elem);
-}
-
-Vector::~Vector ()
-{
-  delete[] elem;
-}
-
-int
-Vector::size () noexcept
-{
-  return sz;
-}
-
-double&
-Vector::operator[] (int i)
-{
-  if (i < 0 || size() <= i)
-    throw out_of_range{"Vector::operator[]"};
-  return elem[i];
-}