Determine the closed loop of a single-linked list

Source: Internet
Author: User

Has the following data structure

Class node{public    int Value {get; set;}    Public Node Next {get; set;}}

  

The existing Node node object, which represents a one-way list, determines whether this one-way list has a ring

public bool Iscricle (node node) {    node fast = node;    node slow = node;    while (node. Next! = null)    {        slow = slow. Next;        Fast = fast. Next;        if (fast! = null && fast. Next! = null)            fast = fast. Next;        else            return false;        node = node. Next;        if (fast = = slow)            return true;    }    return false;}

Using two pointers, the fast pointer walks two nodes at a time, the slow pointer walks one node at a time, and if there is a ring, the fast pointer is bound to point to the same node at some point with the slow pointer.

Determine the closed loop of a single-linked list

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.