Difference between linked list and array and when you might use one over the other
Sigiloso
Array size and memory location assigned at compile time. Linked list size and memory locations can be assigned during runtime. Linked lists are connected using pointers. Arrays allow instant access to elements, linked lists have O(n) access time.