Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I detect that whether a singly linked-list has loop or not?? If it has loop then how to find the point of origination of the loop i.e. the node from which the loop has started.

share|improve this question
What have you managed to work out so far? – corsiKa Apr 23 '12 at 6:07
1  
I am new to linked-list. I know basic linked-list operations like traversing, insertion, deletion and creation. I am not able to figure out how to do that. – Jaguar Apr 23 '12 at 6:09
Finding loops in a linked list is discussed in Elements of Programming, no doubt amongst many other places. – Jonathan Leffler yesterday

2 Answers

up vote 16 down vote accepted

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).
share|improve this answer
Thanks for answer.I want to know the point at which loop started. How can I do that? – Jaguar Apr 23 '12 at 6:12
2  
@Jaguar, updated answer to show how you can do that. – paxdiablo Apr 23 '12 at 6:14

Sorry to be nitpicky, but there is an error in your code.

if you have a list such as

head -> head

You could run into trouble..

# Set nodeB to second element.

nodeB = nodeA.next

if nodeA == nodeB: return true   <<< Add this line here.

# Until end of list with nodeB.
share|improve this answer
(a) Doesn't this degenerate case fall out of the body of the loop where there's a comparison for nodeA == nodeB? (b) Arguably, this should have been a comment to the other answer, rather than being an answer in its own right (not least because it is not a complete answer). – Jonathan Leffler yesterday

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.