0
LinkedList
How difference between arraylist and linkedlist?
1 Odpowiedź
+ 6
LinkedList and ArrayList both implement List Interface but how they work internally is where the differences lies. Main difference between ArrayList and LinkedList is that ArrayList is implemented using re sizable array while LinkedList is implemented using doubly LinkedList.