Ask Question
2 April, 15:14

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

+1
Answers (1)
  1. 2 April, 18:59
    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?
Find an answer to your question ✅ “What are the advantages to using a linked implementation as opposed to an array implementation? ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers