What is the difference between array and linked list
Answers
Answered by
0
In array, each element is independent, no connection with previous element or with its location. In Linked list, location or address of elements is stored in the link part of previous element/node. In array, no pointers are used like linked list so no need of extra space in memory for pointer.
Thanks!
Thanks!
Similar questions