[LeetCode] Linked List Cycle 单链表中的环

简介:

Given a linked list, determine if it has a cycle in it.

Follow up:
Can you solve it without using extra space?

这道题是快慢指针的经典应用。只需要设两个指针,一个每次走一步的慢指针和一个每次走两步的快指针,如果链表里有环的话,两个指针最终肯定会相遇。实在是太巧妙了,要是我肯定想不出来。代码如下:

C++ 解法:

class Solution {
public:
    bool hasCycle(ListNode *head) {
        ListNode *slow = head, *fast = head;
        while (fast && fast->next) {
            slow = slow->next;
            fast = fast->next->next;
            if (slow == fast) return true;
        }
        return false;
    }
};

Java 解法:

public class Solution {
    public boolean hasCycle(ListNode head) {
        ListNode slow = head, fast = head;
        while (fast != null && fast.next != null) {
            slow = slow.next;
            fast = fast.next.next;
            if (slow == fast) return true;
        }
        return false;
    }
}

本文转自博客园Grandyang的博客,原文链接:单链表中的环[LeetCode] Linked List Cycle ,如需转载请自行联系原博主。

相关文章
|
8月前
leetcode:203. 移除链表元素(有哨兵位的单链表和无哨兵位的单链表)
leetcode:203. 移除链表元素(有哨兵位的单链表和无哨兵位的单链表)
44 0
|
C++
【数据结构】第四站:单链表力扣题(一)
【数据结构】第四站:单链表力扣题(一)
42 0
【LeetCode】【数据结构】单链表OJ常见题型(二)
【LeetCode】【数据结构】单链表OJ常见题型(二)
63 0
【LeetCode】【数据结构】单链表OJ常见题型(一)
【LeetCode】【数据结构】单链表OJ常见题型(一)
84 0
|
8月前
|
存储
实现单链表的基本操作(力扣、牛客刷题的基础&笔试题常客)
实现单链表的基本操作(力扣、牛客刷题的基础&笔试题常客)
204 38
|
8月前
|
存储 Python
链表(Linked List)详解
链表(Linked List)详解
68 0
|
存储
数据结构-单链表-力扣题
数据结构-单链表-力扣题
44 1
|
8月前
|
大数据 Java 程序员
「LeetCode合集」链表(List)及经典问题
「LeetCode合集」链表(List)及经典问题
58 0
【数据结构】第四站:单链表力扣题(二)
【数据结构】第四站:单链表力扣题(二)
46 0
【LeetCode】单链表——刷题
【LeetCode】单链表——刷题