Arrays are fixed in size. While linked list is dynamic.
So when we don't know the size of the content in advance then we should use Linked List.
Anónimo
22 mar 2012
arrays also support indexed access to any element in O(1) time. LinkedLists would be O(n).
LinkedLists work well if you need FIFO or LIFO behavior. Arrays take a little more bookkeeping to support these ops.