LeetCode 環形鍊錶

2022-06-30 14:39:09 字數 873 閱讀 6438

給定乙個鍊錶,判斷鍊錶中是否有環。

為了表示給定鍊錶中的環,我們使用整數 pos 來表示鍊錶尾連線到鍊錶中的位置(索引從 0 開始)。 如果 pos 是 -1,則在該鍊錶中沒有環。

示例 1:

輸入:head = [3,2,0,-4], pos = 1

輸出:true

解釋:鍊錶中有乙個環,其尾部連線到第二個節點。

示例 2:

輸入:head = [1,2], pos = 0

輸出:true

解釋:鍊錶中有乙個環,其尾部連線到第乙個節點。

示例 3:

輸入:head = [1], pos = -1

輸出:false

解釋:鍊錶中沒有環。

結點定義:

class

listnode

}

public

class

solution

listnode slow =head;

listnode fast =head.next;

while (slow !=fast)

slow =slow.next;

fast =fast.next.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環形鍊錶

兩種思路 第一 想到判讀重複問題,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 解釋 鍊錶中有乙個環,其尾部連線到第二個節點。示...