Q. What differentiates a circular linked list from a normal linked list? (Solved)
1. you cannot have the ‘next’ pointer point to null in a circular linked list
2. it is faster to traverse the circular linked list
3. you may or may not have the ‘next’ pointer point to null in a circular linked list
4. head node is known in circular linked list
- c. you may or may not have the ‘next’ pointer point to null in a circular linked list