Take a look at this singly Linked List:
How can we make this Linked List circular?
The list can be made circular
by connecting the next pointer
in the last node, to the @(5) node.
The list can be made circular
by connecting the next pointer
in the last node, to the first node.
The list can be made circular
by connecting the next pointer
in the last node, to the head node.