Computer Science, asked by rrm12349876, 11 months ago

What are the disadvantages of array implementation of linked list?

Answers

Answered by Anonymous
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 Anonymous
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