Q3Data Structures
Question
2 marks
Elaborate the disadvantages of Linked List over Arrays.
Answer
Linked lists suffer from high memory overhead per node and the complete inability to perform random access.
The primary disadvantages of a Linked List compared to an Array include the severe lack of direct random access (forcing inefficient sequential traversals to reach specific elements), and significantly higher memory overhead because every single node must definitively allocate extra structural memory for its referential pointers.