Question d’entretien chez Cognizant

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

Réponses aux questions d'entretien

Utilisateur anonyme

5 mars 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

Utilisateur anonyme

22 sept. 2016

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

7