ArrayList extends AbstractList and implements the List Interface. ArrayList is dynamic array.
It can be said that it was basically created to overcome the drawbacks of arrays
The LinkedList class extends AbstractSequentialList and implements List,Deque, and Queue interface.
Performancearraylist.get()
is O(1) whereas linkedlist.get()
is O(n) arraylist.add()
is O(1) and linkedlist.add()
is 0(1)arraylist.contains()
is O(n) andlinkedlist.contains()
is O(n) arraylist.next()
is O(1) and linkedlist.next()
is O(1)arraylist.remove()
is O(n) whereas linkedlist.remove()
is O(1)
In arraylistiterator.remove()
is O(n)
whereas In linkedlist iterator.remove()
is O(1)
↧
Answer by Randhawa for When to use LinkedList over ArrayList in Java?
↧