Java Collections
List
ArrayList
It internally uses an array
Fast to access the elements by index
Slower if you want to do operations in the middle
LinkedList
Based on a Double Linked
Very fast for deleting or adding elements in the middle
Vector
It belon...
wcds.hashnode.dev1 min read