llllmz

导航

141. 环形链表c

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     struct ListNode *next;
 * };
 */
bool hasCycle(struct ListNode *head) {
    struct ListNode* slow=head;
    struct ListNode* fast=head;
    while(fast&&fast->next){
        slow=slow->next;
        fast=fast->next->next;
        if(slow==fast) return true;
    }   
    return false;
}

结果:

posted on 2024-03-15 22:26  神奇的萝卜丝  阅读(8)  评论(0)    收藏  举报