Single linked list to determine whether a single linked list has a ring

Source: Internet
Author: User
typedef struct LINKEDLIST
{
int data;
linkedlist* Pnext;
}linkedlist;

/**
* Test 6, write a function to check whether there are loop in a linked list
* @param plist [input] linked list
* @return BOOL, if there is loop inside, return true, otherwise false
*/
BOOL Checkloop (linkedlist* plist)
{
linkedlist* P1 = plist;
linkedlist* P2 = plist;

if (plist = null | | plist->pnext = NULL)
return false;

while (P2!= null && p2->pnext!= null)
{
P1 = p1->pnext;
P2 = p2->pnext->pnext;

if (P1==P2)
return true;
}
return false;
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.