In an implementation of a linked list, each node contains data and address. What can the address field
possibly contain?
Answers
Answered by
0
Answer:
address of next node in sequence
Answered by
1
Answer:
The address field possibly contains the address of the next node in the memory.
Explanation:
The linked list is the collection of objects called nodes that are randomly stored in the memory.
A node contains two fields
That is data stored at that particular address and the pointer contains the address of the next node in the memory and the last node of the list contains a pointer to the null
Therefore the address field possibly contains the address of the next node in the memory.
Similar questions