What is a cycle/loop in the singly-linked list? Technology Community › Category: Linked Lists › What is a cycle/loop in the singly-linked list? 0 Vote Up Vote Down VietMX Staff asked 4 years ago A cycle/loop occurs when a node’s next points back to a previous node in the list. The linked list is no longer linear with a beginning and end—instead, it cycles through a loop of nodes.