what is the disadvantages and advantages of linked list
Advantages
Scalability.
Efficient memory use since the size is not fixed.
Convenient insertion of an item into the list.
Convenient removal of an item from the list.
disadvantages
Time-consuming replacement of an item in the list.
Time-consuming access to an item.
Comments
Leave a comment