兩種思路
第一 : 想到判讀重複問題,hash表是很好的結構,可以使用hashset儲存元素,可以判斷是否出現過,
空間複雜度o(n),時間複雜度o(n)
第二 : 雙指標,追及問題,乙個快乙個慢,若存在環,快的指標必定會追上慢的指標
空間複雜度o(n),時間複雜度o(1)
/*** 利用雜湊表的特性。
* tips: 雜湊表是判斷重複或者儲存乙個後面需要用到的資料的重要方法
* @param head
* @return
*/public static boolean solution(listnode head) else
}return false;
}/**
* 雙指標
* 快慢指標
*/public static boolean solution2(listnode head)
listnode slow = head;
listnode fast = head.next;
while (fast != slow)
fast = fast.next.next;
slow = slow.next;
}return true;
}
LeetCode 環形鍊錶
given a linked list,determine if it has a cycle in it.to represent a cycle in the given linked list,we use an integer pos which represents the positio...
LeetCode 環形鍊錶
題目描述 給定乙個鍊錶,判斷鍊錶中是否有環。為了表示給定鍊錶中的環,我們使用整數 pos 來表示鍊錶尾連線到鍊錶中的位置 索引從 0 開始 如果 pos 是 1,則在該鍊錶中沒有環。示例 1 輸入 head 3,2,0,4 pos 1 輸出 true 解釋 鍊錶中有乙個環,其尾部連線到第二個節點。示...
環形鍊錶 LeetCode
給定乙個鍊錶,判斷鍊錶中是否有環。為了表示給定鍊錶中的環,我們使用整數 pos 來表示鍊錶尾連線到鍊錶中的位置 索引從 0 開始 如果 pos 是 1,則在該鍊錶中沒有環。示例 1 輸入 head 3,2,0,4 pos 1 輸出 true 解釋 鍊錶中有乙個環,其尾部連線到第二個節點。示例 2 輸...