One-dimensional array

одномерный массив, вектор состоит из одного ряда элементов и имеет соответственно один индекс Смотри также: two-dimensional array Антоним(ы): multidimensional array

Англо-русский словарь компьютерных терминов

One-dimensional array

математика одномерная таблица

Англо-русский научно-технический словарь

One-dimensional array

1) одномерный (векторный) массив; вектор 2) одномерная цепочка, одномерный ряд

Англо-русский политехнический словарь

One-dimensional array

An array with only one dimension; the simplest kind of array, consisting of a sequence of items ("elements"), all of the same type. An element is selected by an integer index that normally starts at zero for the first element and increases by one. The index of the last element is thus the length of the array minus one. A one-dimensional array is also known as a vector. It should not be confused with a list. In some languages, e.g. Perl, all arrays are one-dimensional and higher dimensions are represented as arrays of pointers to arrays (which can have different sizes and can themselves contain pointers to arrays and so on).

Free Online Dictionary of Computing