What is a circular linked list?
2024
What is a circular linked list?
Answer: A. A linked list where all nodes are connected in a circular fashion, i.e., the last node points to the first node — A circular linked list is a variation of linked list where all nodes are connected in a circular manner, i.e., the link part of the last node points back to…
- A.
A linked list where all nodes are connected in a circular fashion, i.e., the last node points to the first node
- B.
A linked list where the first node points to the last node
- C.
A linked list where all nodes point to themselves
- D.
None of the above
Attempted by 580 students.
Show answer & explanation
Correct answer: A
A circular linked list is a variation of linked list where all nodes are connected in a circular manner, i.e., the link part of the last node points back to the first node.