How to identify linked list is circular?
Answers
Answered by
0
Check if a linked list is Circular Linked List. Given a singly linked list, find if the linked list is circular or not. Alinked list is called circular if it not NULL terminated and all nodes are connected in the form of a cycle. Below is an example of circular linked list.
Similar questions