we are using floyd’s algorithm for finding the node from where the cycle is starting , Am i rigjht?
and after finding that , we check-
if(anynode->next==(that node we find from floyd cycle))
{
then anynode->next=NULL;
}
???
pls tell if i am right?