List out the advantages of using a linked list
3 years ago
Data Structure and Algorithm
- It is not necessary to specify the number of elements in a linked list during its declaration
- Linked list can grow and shrink in size depending upon the insertion and deletion that occurs in the list
- Insertions and deletions at any place in a list can be handled easily and efficiently
- A linked list does not waste any memory space
Sanisha Maharjan
Jan 23, 2022