You can detect it by simply running two pointers through the list. Start the first pointer A on the first node and the second pointer B on the second node.
Advance the first pointer by one every time through the loop, advance the second pointer by two. If there is a loop, they will eventually point to the same node. If there's no loop, you'll eventually hit the end with the advance-by-two pointer.
Consider the following loop:
head -> 1 -> 2 -> 3 -> 4 -> 5 -> 6 -> 7 -> 8
^ |
| |
+------------------------+
Starting A at 1 and B at 2, they take on the following values:
A B
= =
1 2
2 4
3 6
4 8
5 4
6 6
Because they're equal, and B should always be beyond A (because it's advancing by two as opposed to the advance-by-one behaviour of A), it means you've discovered a loop.
The pseudo-code will go something like this:
def hasLoop (pointer nodeA):
# nodeA is first element
# Empty lest has no loops.
if nodeA == NULL: return false
# Set nodeB to second element.
nodeB = nodeA.next
# Until end of list with nodeB.
while nodeB != NULL:
# Advance nodeA by one, nodeB by two (with end-list check).
nodeA = nodeA.next
if nodeB.next == NULL: return false
nodeB = nodeB.next.next
# If same, we have a loop.
if nodeA == nodeB: return true
endwhile
# Exited without loop maens no loop.
return false
enddef
Once you know a node within the loop, finding the first node is easy.
Leave one pointer A on that node and advance the other B by one. Then use a third node C, initially set to the head.
Then you just advance B continuously. If you find it equal to C, then C is the start of your loop. On the other hand, if B ends up wrapping around to A again, then C is before your loop.
In that case, advance C and B by one and keep going. Eventually, C will enter the loop and be met by B, at which point you're done.
In other words:
(C goes this way).
C ->> A (this is where A and B
| | first met).
v v
head -> 1 -> 2 -> 3 -> 4 -> 5 -> 6 -> 7 -> 8
^ |
| |
+------------------------+
(B runs through this loop, every time
it reaches A, you advance C; when it
reaches C, that's your first loop node).