Computer Science, asked by naveensrichakra123, 1 year ago

How are lists implemented in memory?

Answers

Answered by Super2005
0

Well, to begin with Arrays are of a fixed size meaning memory must be allocated for the specified size upon initialisation. However, Linked Lists allocate memory at runtime for the amount that is required (due to it being a dynamic data structure).

Similar questions