+ 2
What is advantage of linklist over arrays
2 Respuestas
+ 6
LinkedList is better when u have to make multiple inserts and deletes but arraylist is better when u want quick access with relatively fewer inserts and/or deletes
+ 3
Linked list advantage over static array:
linked list size can change
Linked list advantage over dynamic array:
inserting and deleting elements is more time efficient