leetcode141-环形链表

Posted xinfenglee

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode141-环形链表相关的知识,希望对你有一定的参考价值。

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

给定一个链表,判断链表中是否有环。

进阶:
你能否不使用额外空间解决此题?


以上是关于leetcode141-环形链表的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 141. 环形链表

LeetCode 141 环形链表

LeetCode.链表.141+142环形链表,附详细证明过程+多图分析

leetcode 141. 环形链表

leetcode141-环形链表

每天一道leetcode141-环形链表