Pregunta de entrevista de Antra

difference between arraylist and linkedlist

Respuesta de la entrevista

Anónimo

16 dic 2023

ArrayList uses an array, which allows for fast random access but slow insertion and deletion. While LinkedList uses a doubly linked list, which allows for fast insertion and deletion but slow random access. Also one of the major difference lies in the access time.