What term describes the following? a node structure that contains a pointer or reference to another node of the same type, forming the basis of linked structures.
- A. Adjacency list
- B. Self-referential structure ✓
- C. Skip list
- D. Linear probing
Correct answer
B. Self-referential structure
Explanation
Self-referential structure refers to a node structure that contains a pointer or reference to another node of the same type, forming the basis of linked structures.