Difference between Array and Linked List
Difference between Array and Link List:-
Array | Linked List |
Static data structure | Dynamic data structure |
Difficult to insert and delete nodes | Comparativly easier to insert and delete nodes |
Searching is easy | Searching is difficult |
Memory used is less | Memory used is more |