For a simple Vector class in C++ one could have something like this
Vector
class Vector { int _length; float* _values; public: Vector(int length,