Definition: A Vector is another name for a single dimension array. It is also the name of a C++ STL template class.
In the STL, the Vector class is similar to STL List class with one main difference - individual elements in a Vector can be accessed by position. In a List they can't be.
Glossary:
A B C D E F G H I J K L M N O P Q R S T U V W X Y ZAlso Known As: Array, List
Examples:
I implemented the text editor as a vector of strings.

