美文网首页
leetcode 141.环形链表

leetcode 141.环形链表

作者: 点二二四 | 来源:发表于2018-09-16 23:16 被阅读0次

题目描述:

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

代码:

// 快慢指针
public class Solution {
    public boolean hasCycle(ListNode head) {
        if (head == null || head.next == null) return false;
        ListNode slow = head;
        ListNode fast = head.next;
        while (slow != fast) {
            if (fast == null || fast.next == null) return false;
            slow = slow.next;
            fast = fast.next.next;
        }
        return true;
    }
}

相关文章

网友评论

      本文标题:leetcode 141.环形链表

      本文链接:https://www.haomeiwen.com/subject/xzsqnftx.html