‹ Back to the paper
What is the importance of the reference part in a Linked List?
Answer
Answer
AIThe reference (link) part of a node stores the address of the next node in the list. It connects the nodes together, so the list can be traversed from the first node to the last; the last node's reference is null, marking the end of the list.
From ISC 2023 Computer Science Paper 1, question 1(x).