首页 > 代码库 > Linked List Cycle Leetcode
Linked List Cycle Leetcode
Given a linked list, determine if it has a cycle in it.
Follow up:
Can you solve it without using extra space?
这道题很简单也很经典感觉。一开始用hashset做的,但这样就用了extra space了。后来发现可以用双指针。
hashset
public class Solution { public boolean hasCycle(ListNode head) { if (head == null) { return false; } Set<ListNode> hs = new HashSet<>(); while (true) { if (head == null) { return false; } if (hs.contains(head)) { break; } hs.add(head); head = head.next; } return true; } }
双指针
public class Solution { public boolean hasCycle(ListNode head) { if (head == null) { return false; } ListNode fast = head; ListNode slow = head; while (fast.next != null) { fast = fast.next.next; slow = slow.next; if (fast == slow) { return true; } if (fast == null) { break; } } return false; } }
双指针是公认的解法,这次都忘记了,下次要记住。。。
Linked List Cycle Leetcode
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。