‹ Back to the paper
What is a linked list?
Answer
Answer
AIA linked list is a linear, dynamic data structure made up of a sequence of nodes, where each node holds a data item and a reference (pointer/link) to the next node in the sequence. Unlike an array, its elements need not occupy contiguous memory locations, and the list can grow or shrink at run time.
From ISC 2023 Specimen Computer Science Paper 1, question 1(x).