Antra interview question

difference between arraylist and linkedlist

Interview Answer

Anonymous

Dec 16, 2023

ArrayList uses an array, which allows for fast random access but slow insertion and deletion. While LinkedList uses a doubly linked list, which allows for fast insertion and deletion but slow random access. Also one of the major difference lies in the access time.