标签:nbsp 设置 复杂 alt tle return 题目 title 复杂度
public class Solution { public boolean hasCycle(ListNode head) { /* 链表有环思路:如果有环,设置一个快指针,设置一个慢指针, 快指针一次走两步,慢指针一次走一步,快指针总能追上慢的 */ if (head == null){ return false; } ListNode fast = head; ListNode slow = head; while(fast !=null && fast.next != null){ fast = fast.next.next; slow = slow.next; if (fast == slow){ return true; } } return false; } }
标签:nbsp 设置 复杂 alt tle return 题目 title 复杂度
原文地址:https://www.cnblogs.com/jieran/p/14480737.html