In computer science, a vector refers to a one-dimensional array.
The C++ Standard Library container class is called std::vector and emulates a C-style array, with the additional functionality of resizing itself when inserting or removing elements. Java also has the old Vector collection that, differently from ArrayList, is synchronized (so safer for multithreading) but slower. However headers or documentation for C, FORTRAN code also often name usual, fixed size arrays as "vectors".
The term "Vector" originated from using the array data structure to represent a geometric vector the starts at the coordinate origin (0,0,0) and points to the point, determined by the values, stored in this array (x,y,z).
This is distinct from:
- (mathematical) vectors, used in computer graphics
- vector-graphics
