What are 3 different ways to implement an array of order 4x8?
An array of order 4x8 can either be implemented as a
one-dimensional array of order 32 or as a one-dimensional array of
order 4, where each element is a one-dimensional array of order 8.
In either case, the 32 data elements are allocated contiguously and
there is no difference in performance.
A third way is to implement the one-dimensional array of order 4
as an array of pointers to separately allocated one-dimensional
arrays of order 8. The order 4 array is contiguous as are the order
8 arrays, however they need not be contiguous with one another
other. This is the least efficient implementation due to the
additional level of indirection required to navigate the array.