Pergunta de entrevista da empresa Cognizant

Difference Between Array List and Linked Array List?Which is better ?

Respostas da entrevista

Sigiloso

5 de mar. de 2019

ArrayList and LinkedList both implements List interface and maintains insertion order. Both are non synchronized classes. ArrayList is better for storing and accessing data. LinkedList is better for manipulating data.

4

Sigiloso

22 de set. de 2016

Linkedlist is better as in linkedlist,insertion and deletion can happen anywhere which leads to less memory consumption

7