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
|
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
|
||||||||||||||
|
|
|
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)
|
||||||||||||||||||
|
|
|
Here is a nice site on which the different solutions can copied. This is the winner on that site
|
||
|
|
|
|
Search for the Tortoise-Hare algorithm/description. |
||
|
|
|
|
@samoz has in my point of view the answer! Pseudo code missing. Would be something like yourlist is your linked list
sorry, code is very pseudo (do more scripting then java lately) |
||||||
|
|
|
How hard have you searched? This is in C++, but it will be trivial to convert in Java. |
||
|
|
|
|
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:
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:
This will be a little bit slower due to the insertion times of dynamic arrays. |
||||||||||||||
|