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 position (0-indexed) in the linked list where tail connects to. if pos is -1, then there is no cycle in the linked list.
input: head =[3
,2,0
,-4]
, pos =
1output: true
explanation: there is a cycle in the linked list, where tail connects to the second node.
input: head =[1
,2], pos =
0output: true
explanation: there is a cycle in the linked list, where tail connects to the first node.
input: head =[1
], pos =-1
output: false
explanation: there is no cycle in the linked list.
雙指標法:乙個快指標,乙個慢指標,快指標每次移動2步,慢指標每次移動1步,如果沒有環,那快指標會先到達尾部結束,如果有環,快指標會追上慢指標。
/**
* definition for singly-linked list.
* struct listnode ;
*/bool hascycle
(struct listnode *head)
return false;
}
LeetCode環形鍊錶
兩種思路 第一 想到判讀重複問題,hash表是很好的結構,可以使用hashset儲存元素,可以判斷是否出現過,空間複雜度o n 時間複雜度o n 第二 雙指標,追及問題,乙個快乙個慢,若存在環,快的指標必定會追上慢的指標 空間複雜度o n 時間複雜度o 1 利用雜湊表的特性。tips 雜湊表是判斷重...
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 輸...