1.

What Is The Difference Between Arraylist And Linkedlist?

Answer»

ArrayList:

  • ArrayList USES a DYNAMIC ARRAY.
  • ArrayList is not efficient for manipulation because a lot of shifting is required.
  • ArrayList is better to store and FETCH data.

LinkedList:

  • LinkedList uses doubly linked list.
  • LinkedList is efficient for manipulation.
  • LinkedList is better to manipulate data.

ArrayList:

LinkedList:



Discussion

No Comment Found