When to use LinkedList over ArrayList in Java?
Asked 07 September, 2021
Viewed 918 times
  • 54
Votes

I've always been one to simply use:

List<String> names = new ArrayList<>();

I use the interface as the type name for portability, so that when I ask questions such as these I can rework my code.

When should LinkedList be used over ArrayList and vice-versa?

30 Answer