Sollicitatievraag bij Tripadvisor

Difference between an array list and a linked list.

Antwoorden op sollicitatievragen

Anoniem

7 jul 2012

"We can manipulat linkedlist so fast then arraylist which is caracterised by fast random access and there is no random on linkedlist", LIO

Anoniem

21 apr 2015

Search: ArrayList O(1) is faster than linkedList O(n) Insert/Delete: LinkedList O(1) is faster than arrayList O(n) Memory Overhead: LinkedList use more memory ArrayList maintains indexes and element data LinkedList maintains element data and two pointers for neighbor nodes