PRASHNIKAप्रश्निका
Back to the paper

What is the importance of the reference part in a Linked List?

Computer Science20231 markShort answer

Answer

Answer

AI
The 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.
Data structures

From ISC 2023 Computer Science Paper 1, question 1(x).