Difference between linear and multi dimensional array in data structure
Answers
Answered by
0
Answer:
A linear array (or one-dimensional array) is simply a list of things. It could be a list of numbers, letters, {X,Y} coordinates (points), or memory addresses (pointers) to a series of very complex objects. It can even be pointers to other lists, which is often how “multi-dimensional” arrays are formed.
Similar questions