Skip to content

Latest commit

 

History

History
4 lines (3 loc) · 554 Bytes

arraylist-and-linkedlist.md

File metadata and controls

4 lines (3 loc) · 554 Bytes

🍡 ArrayList & LinkedList

ArrayList is a better choice when there is a need for fast access to elements, and when the list will not be modified frequently245. LinkedList is a better choice when there is a need for frequent modifications, such as adding or removing elements from the list2
\