LeetCode:141.环形链表

判断链表是否有环,使用双指针法判断。

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

你可能感兴趣的:(算法,链表,leetcode,数据结构)