26 判斷環形鍊錶(簡單)

2021-10-24 20:28:11 字數 1535 閱讀 7700

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

如果鍊錶中有某個節點,可以通過連續跟蹤 next 指標再次到達,則鍊錶中存在環。 為了表示給定鍊錶中的環,我們使用整數 pos 來表示鍊錶尾連線到鍊錶中的位置(索引從 0 開始)。 如果 pos 是 -1,則在該鍊錶中沒有環。注意:pos 不作為引數進行傳遞,僅僅是為了標識鍊錶的實際情況。

如果鍊錶中存在環,則返回 true 。 否則,返回 false 。

示例 1:

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

輸出:true

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

示例 2:

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

輸出:true

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

示例 3:

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

輸出:false

解釋:鍊錶中沒有環。

# definition for singly-linked list.

# class

listnode

:# def __init__

(self, x)

:# self.val = x

# self.next = none

class

solution

: def hascycle

(self, head: listnode)

-> bool:

'''快慢指標:比如兩個指標同時出發,慢指標每次走一步,快指標每次走兩步,

如果相遇說明有環,否則無環'''

if head == none or head.next == none: # 若head為none或者head.next=none,則表示無環

return false

slow = head

fast = head.next

while fast!=none and fast.next!=none and fast.next.next!=none and slow!=fast:

slow = slow.next

fast = fast.next.next

if slow == fast : # 如果無環,slow不可能等於fast,相等則說明有環

判斷環形鍊錶

最開始想到的處理方式是整個陣列,把鍊錶元素乙個乙個放進去,直到有重複的,class solution def hascycle self,head listnode bool tgt while head head head.next if head and head.val in tgt retu...

環形鍊錶判斷

141 環形鍊錶 思路 將訪問過的放到乙個容器中,然後判斷當前訪問的節點是否已經存在容器內 141 1 放到容器中,判斷當前的節點是否在已訪問的容器內 bool hascycle listnode head return false 提交後 5 時間複雜度o n 空間複雜度o n 因為使用了額外的容...

鍊錶 (判斷環形鍊錶)演算法

coding utf 8 author leadingme mail leadingme qq.com mywebsite leadingme.top 環形鍊錶 演算法要求 給定乙個鍊錶,判斷鍊錶中是否有環 為了表示給定鍊錶的環,這裡使用整數pos來表示鍊錶尾部連線到鍊錶中的位置 索引從0開始 如果...