Computer Science, asked by sandip000, 1 year ago

What is the difference between array and linked list

Answers

Answered by Saanvipriya
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!
Similar questions