The following statement describes a specific concept. What is it called? a linked list in which the last node points back to the first node, forming a loop.
- A. Queue
- B. Circular linked list ✓
- C. Graph
- D. Binary tree
Correct answer
B. Circular linked list
Explanation
Circular linked list refers to a linked list in which the last node points back to the first node, forming a loop.