employer cover photo
employer logo
employer logo

KUNCHAM Software Solutions

Questa è la tua azienda?

Domanda di colloquio di KUNCHAM Software Solutions

What are the differences between array list and linked list?

Risposta di colloquio

Anonimo

28 set 2019

ArrayList internally uses a dynamic array to store the elements. LinkedList internally uses a doubly linked list to store the elements. Manipulation with ArrayList is slow because it internally uses an array. If any element is removed from the array, all the bits are shifted in memory.