0
15kviews
What are the advantages of using linked lists over an array?
2 Answers
0
341views
  1. Dynamic size As the size of linked list is not fixed so we can add or remove as much elements as required. But in array we have to pre-define the array size which we can’t change later.

  2. Ease of insertion/deletion

    • Inserting a new element in an array of elements is …

Create a free account to keep reading this post.

and 2 others joined a min ago.

0
267views

Advantages of Linked List

Dynamic Data Structure

Linked list is a dynamic data structure so it can grow and shrink at runtime by allocating and deallocating memeory. So there is no need to give initial size of linked list.

Insertion and Deletion

Insertion and deletion of nodes are really easier. …

Create a free account to keep reading this post.

and 4 others joined a min ago.

Please log in to add an answer.