llllmz

导航

142. 环形链表 IIc

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     struct ListNode *next;
 * };
 */
struct ListNode *detectCycle(struct ListNode *head) {
    struct ListNode* slow=head,*fast=head;
    while(fast && fast->next){
        slow=slow->next;
        fast=fast->next->next;
        if(slow==fast){
            while(head!=slow){
                head=head->next;
                slow=slow->next;
            }
            return slow;
        }
    }
    return NULL;
}

结果:

posted on 2024-03-13 16:10  神奇的萝卜丝  阅读(17)  评论(0)    收藏  举报