One way of mapping the elements of a two-dimensional array onto a vector, e.g. for representation in memory. If a two-dimensional array, A, with m rows and n columns is mapped in column-major order onto a vector b with m x n elements then
aij = bk
where
k = m(j - 1) + i
See also row-major order.
Basic Computer Science
Operating Systems
Database Management System
Questions and Answers
Home Dictionary Contact us About us Privacy policy Link to us Advertise
Copy right © 2012