What are the disadvantages of array implementation of linked list?
Answers
Answered by
0
Explanation:
The main disadvantage of linked list over array is access time to individual elements.
Array is random-access,which means it takes o(1) to access any element in the array. Linked list takes O(n) for access to an element in the list in the worst case.....
Answered by
0
Answer:
☑ The main disadvantage of linked list over array is access time to individual elements. Array is random-access,which means it takes o(1) to access any element in the array. Linked list takes O(n) for access to an element in the list in the worst case
Similar questions