leetCode 之 環形鍊錶

2021-10-23 06:33:26 字數 1119 閱讀 1663

題目:

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

為了表示給定鍊錶中的環,我們使用整數 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

解釋:鍊錶中沒有環。

高階:你能用 o(1)(即,常量)記憶體解決此問題嗎?

二、通過兩個指標 乙個指標每次後移一位,乙個指標每次後移兩位,這樣如果鍊錶中包含圈,

則兩指標一定會相遇,若沒有圈則會有指向null的指標。

注意踩坑(劃重點!!!)

:判斷迴圈條件時,要注意判斷條件的有效性

我第一次寫的是 while(l1->next != null && l2->next->next != null)

當l1、l2指標第一次變化時,這樣判斷沒有問題,但是之後l2 比 l1 走的快,也就是說l1的下乙個已經不是 l2 的下一位了,這樣判斷出錯:runtime error: member access within null pointer of type 'struct listnode'

主要是因為判斷條件有問題

正確寫法如下:

/**

* definition for singly-linked list.

* struct listnode

* };

*/class solution

return false ;}};

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 解釋 鍊錶中有乙個環,其尾部連線到第二個節點。示...