Ask Question
17 February, 10:05

What are the advantages to using a linked implementation as opposed to an array implementation?

+5
Answers (1)
  1. 17 February, 11:44
    0
    The main advantage of using the linked implementation over the array implementation are:

    In linked list, the size of list does not need to be mention initially in the program in dynamic memory deallocation and allocation. We can easily add new elements and nodes in the linked list as there is no size limit. We can easily insert and also remove the elements and nodes in the linked list without re-organize the complete structure. As, the information do not need to be stored in the memory. On the other hand, array implementation takes maximum time as compared to linked list.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “What are the advantages to using a linked implementation as opposed to an array implementation? ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers