Question d’entretien chez PAX Technology

What is the difference between an Array and a Linked List?

Réponse à la question d'entretien

Utilisateur anonyme

2 juil. 2021

Array - Contiguous set of elements, allocated in the same memory location LinkedList - use nodes in different areas of memory, traversed from the head (singly linked list)

1