Linked Lists
6:00
Question 1 of 6
In a circular linked list, how do you know you have traversed the entire list? [GATE CS 2009]
When the next pointer is NULL.
When the next pointer points back to the head node.
When the data of the current node is the same as the head node.
It is not possible to know.