vote up 7 vote down star
5

How can i find whether a singly linked list is circular/cyclic or not? I Tried searching but couldn't find a satisfactory solution. If possible, can you provide pseudocode or Java?

For Example 1 3 5 71 45 7 5 -stop , its a circular linked list

flag

45% accept rate
In most implementation, linked lists are circular. What linked list do you want to analyze? – kd304 Jul 9 at 12:34
2  
@kd304: no, in most implementations the list isn't circular. It has a first and last element, and it's not valid for clients to walk off the ends. The data structure used internally to implement the list may be a circular list (with a way of recognising the head when you get back to it). Important distinction between two different levels of abstraction. – Steve Jessop Jul 9 at 12:38
@O.L.C: Yes, I meant the second thing. Wasn't sure about the question. – kd304 Jul 9 at 12:40
@harshit You're describing a cyclic linked list, not a circular list – samoz Jul 9 at 12:45
2  
I don't understand the example... what's circular about it? – aberrant80 Jul 9 at 12:47
show 2 more comments

6 Answers

vote up 29 vote down check

The standard answer is to take two iterators at the beginning, increment the first one once, and the second one twice. Check to see if they point to the same object. Then repeat until the one that is incrementing twice either hits the first one or reaches the end.

This algorithm finds any circular link in the list, not just that it's a complete circle.

Pseudo-code (not Java, untested -- of the top of my head)

bool hasCircle(List l)
{
   Iterator i = l.begin(), j = l.begin();
   while (true) {
      // increment the iterators, if either is at the end, you're done, no circle
      if (i.hasNext())  i = i.next(); else return false;

      // second iterator is travelling twice as fast as first
      if (j.hasNext())  j = j.next(); else return false;
      if (j.hasNext())  j = j.next(); else return false;

      // this should be whatever test shows that the two
      // iterators are pointing at the same place
      if (i.getObject() == j.getObject()) { 
          return true;
      } 
   }
}
link|flag
1  
The good thing about this is it spots cycles which aren't necessarily at the start, whereas the "check until you reach head again" only spots a fully circular list. – Jon Skeet Jul 9 at 12:32
Nice, hadn't thought of this before! :) – Vilx- Jul 9 at 12:33
6  
@teabot: It's called Floyd's Cycle-Finding Algorithm, but it's sometimes referred to as "The Tortoise and the Hare Algorithm". – Bill the Lizard Jul 9 at 12:41
1  
In math this algorithm is sometimes used for loop finding, for example in factoring large numbers. There it is called after the greek letter rho, for the similarity to the shape of the search space with an initial part and loop at the end (i.e. Pollard's rho algorithm). – starblue Jul 9 at 12:44
1  
Here's the wikipedia page for it- en.wikipedia.org/wiki/Cycle_detection – RichardOD Nov 18 at 14:22
show 5 more comments
vote up 0 vote down

Start at one node and record it, then iterate through the entire list until you reach a null pointer or the node you started with.

Something like:

Node start = list->head;
Node temp = start->next;
bool circular = false;
while(temp != null && temp != start)
{
   if(temp == start)
   {
     circular = true;
     break;
   }
   temp = temp->next;
}
return circular

This is O(n), which is pretty much the best that you will able to get with a singly linked list (correct me if I'm wrong).

Or to find any cycles in the list (such as the middle), you could do:

Node[] array; // Use a vector or ArrayList to support dynamic insertions
Node temp = list->head;
bool circular = false;
while(temp != null)
{
   if(array.contains(temp) == true)
   {
     circular = true;
     break;
   }
   array.insert(temp);
   temp = temp->next;
}
return circular

This will be a little bit slower due to the insertion times of dynamic arrays.

link|flag
2  
That will fail if the circle starts in the middle. – Vilx- Jul 9 at 12:32
Good, but that ignores the following scenario: A->B->C->B-C->B... The loop may happen after you start. This is why the double iteration from answers above is needed. – Autocracy Jul 9 at 12:34
Are we talking about duplicate entries in the list? – kd304 Jul 9 at 12:36
For the most part though, circular lists are usually referring to the end being tied to the head, rather than in the middle; those are usually just referred to as cyclic. – samoz Jul 9 at 12:37
1  
samoz is right, considering the question asks specifically about circular linked-lists, not for cycles. – Bill the Lizard Jul 9 at 12:43
show 4 more comments
vote up 0 vote down

How hard have you searched? This is in C++, but it will be trivial to convert in Java.

link|flag
vote up 0 vote down

@samoz has in my point of view the answer! Pseudo code missing. Would be something like

yourlist is your linked list

allnodes = hashmap
while yourlist.hasNext()
   node = yourlist.next()
   if(allnodes.contains(node))
      syso "loop found"
      break;
   hashmap.add(node)

sorry, code is very pseudo (do more scripting then java lately)

link|flag
Basically new HashSet(llist).size() <> llist.size() ? – kd304 Jul 9 at 12:39
No, I think this might give you a infinit loop and a crash after some time. You have realy to iterate over it. – leo Jul 9 at 12:49
OK. It seemed that loopiness is defined by the list value itself, not the next-pointer within the list. – kd304 Jul 9 at 12:59
vote up 1 vote down

Search for the Tortoise-Hare algorithm/description.

link|flag
vote up 0 vote down

Here is a nice site on which the different solutions can copied.

find loop singly linked list

This is the winner on that site

// Best solution
function boolean hasLoop(Node startNode){
  Node slowNode = Node fastNode1 = Node fastNode2 = startNode;
  while (slowNode && fastNode1 = fastNode2.next() && fastNode2 = fastNode1.next()){
    if (slowNode == fastNode1 || slowNode == fastNode2) return true;
    slowNode = slowNode.next();
  }
  return false;
}

This solution is "Floyd's Cycle-Finding Algorithm" as published in "Non-deterministic Algorithms" by Robert W. Floyd in 1967. It is also called "The Tortoise and the Hare Algorithm".

link|flag

Your Answer

Get an OpenID
or

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