国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

LeetCode 142:環(huán)形鏈表 II Linked List Cycle II

hoohack / 2074人閱讀

摘要:如果鏈表無環(huán),則返回。說明不允許修改給定的鏈表。示例輸入輸出解釋鏈表中有一個環(huán),其尾部連接到第一個節(jié)點。兩種方法哈希表哈希表添加節(jié)點時只要發(fā)現(xiàn)節(jié)點已經(jīng)存在了,證明就有環(huán)形鏈表。

給定一個鏈表,返回鏈表開始入環(huán)的第一個節(jié)點。 如果鏈表無環(huán),則返回 null

為了表示給定鏈表中的環(huán),我們使用整數(shù) pos 來表示鏈表尾連接到鏈表中的位置(索引從 0 開始)。 如果 pos-1,則在該鏈表中沒有環(huán)。

說明:不允許修改給定的鏈表。

Given a linked list, return the node where the cycle begins. If there is no cycle, return null.

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.

Note: Do not modify the linked list.

示例 1:

輸入:head = [3,2,0,-4], pos = 1
輸出:tail connects to node index 1
解釋:鏈表中有一個環(huán),其尾部連接到第二個節(jié)點。

示例 2:

輸入:head = [1,2], pos = 0
輸出:tail connects to node index 0
解釋:鏈表中有一個環(huán),其尾部連接到第一個節(jié)點。

示例 3:

輸入:head = [1], pos = -1
輸出:no cycle
解釋:鏈表中沒有環(huán)。

進階: 你是否可以不用額外空間解決此題?

Follow-up: Can you solve it without using extra space?

解題思路:

和上一道題比只多了一步判斷入環(huán)節(jié)點在哪。兩種方法:

哈希表:

哈希表添加節(jié)點時只要發(fā)現(xiàn)節(jié)點已經(jīng)存在了,證明就有環(huán)形鏈表。并且已存在的節(jié)點即為入環(huán)節(jié)點

雙指針:

畫了個圖幫助理解:

一快一慢雙指針開始從頭結(jié)點遍歷鏈表,快節(jié)點速度為2,慢節(jié)點速度為1:

相遇時:

慢節(jié)點走了:a+b

由于快指針?biāo)俣仁锹羔樀?倍,快節(jié)點走了:2(a+b)

快慢節(jié)點相遇時快節(jié)點比慢節(jié)點剛好多走了一圈環(huán)形節(jié)點。快節(jié)點走了:(a+b)+(b+c)

列方程:2(a+b)=(a+b)+(b+c)

解得 a=c

也就是說:相遇節(jié)點到入環(huán)節(jié)點的長度和頭節(jié)點到入環(huán)節(jié)點的長度相等

可以得出結(jié)論,如果此時讓慢節(jié)點或快節(jié)點中的一個指向頭節(jié)點,另一個留在相遇節(jié)點,然后速度都為1,繼續(xù)遍歷鏈表,雙指針再次相遇時的節(jié)點剛好是入環(huán)節(jié)點。

注:為了理解方便,把長度 b 定為上半部分長度,實際上 b 應(yīng)該為快慢節(jié)點相遇時慢節(jié)點繞過環(huán)形鏈表的總長度

哈希表解題:

Java:

public class Solution {
    public ListNode detectCycle(ListNode head) {
        if (head == null) return null;//如果是空鏈表直接返回
        Set nodeSet = new HashSet<>();//構(gòu)造哈希表
        while (head.next != null) {//鏈表下一個不為空
            if (nodeSet.contains(head)) return head;//哈希表包含該節(jié)點則存在環(huán)形鏈表
            nodeSet.add(head);//加入節(jié)點
            head = head.next;//下移一位
        }
        return null;
    }
}

Python:

class Solution(object):
    def detectCycle(self, head):
        """
        :type head: ListNode
        :rtype: ListNode
        """
        if head is None:
            return None
        hashSet=set()#構(gòu)造集合
        while(head.next is not None):
            if head in hashSet:#是否已存在
                return head
            hashSet.add(head)
            head=head.next
        return None
雙指針解題:

Java:

public class Solution {
    public ListNode detectCycle(ListNode head) {
        if (head == null || head.next == null) {
            return null;
        }
        ListNode slow = head;
        ListNode fast = head;
        while (fast != null && fast.next != null) {//快指針及其下一位是否為null
            slow = slow.next;
            fast = fast.next.next;
            if (slow == fast) {//如果相同,存在環(huán)形鏈表
                slow = head;//指向頭節(jié)點
                while (slow != fast) {//繼續(xù)遍歷,再次相遇時的節(jié)點即為入環(huán)節(jié)點
                    slow = slow.next;
                    fast = fast.next;
                }
                return slow;
            }
        }
        return null;
    }
}

Python:

class Solution(object):
    def detectCycle(self, head):
        """
        :type head: ListNode
        :rtype: ListNode
        """
        if head is None or head.next is None:
            return None
        slow, fast = head, head
        while fast is not None and fast.next is not None:
            slow, fast = slow.next, fast.next.next
            if slow == fast:
                slow = head
                while slow != fast:
                    slow = slow.next
                    fast = fast.next
                return slow
        return None
歡迎關(guān)注公眾號:愛寫B(tài)ug(ID:iCodeBugs)

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://specialneedsforspecialkids.com/yun/75416.html

相關(guān)文章

  • LeetCode 142環(huán)形鏈表 II Linked List Cycle II

    摘要:如果鏈表無環(huán),則返回。說明不允許修改給定的鏈表。示例輸入輸出解釋鏈表中有一個環(huán),其尾部連接到第一個節(jié)點。兩種方法哈希表哈希表添加節(jié)點時只要發(fā)現(xiàn)節(jié)點已經(jīng)存在了,證明就有環(huán)形鏈表。 給定一個鏈表,返回鏈表開始入環(huán)的第一個節(jié)點。 如果鏈表無環(huán),則返回 null。 為了表示給定鏈表中的環(huán),我們使用整數(shù) pos 來表示鏈表尾連接到鏈表中的位置(索引從 0 開始)。 如果 pos 是 -1,則在該...

    geekzhou 評論0 收藏0
  • LeetCode 之 JavaScript 解答第142題 —— 環(huán)形鏈表 IILinked Li

    摘要:說明不允許修改給定的鏈表。算法思路題目要求返回單鏈表中存在循環(huán)鏈表的位置。首先,先判斷該單鏈表是否存在循環(huán)鏈表用兩個快慢指針分別指向鏈表的頭部,每次移動兩步,每次移動一步,移動的步數(shù)是的兩倍。 Time:2019/4/8Title: Linked List Cycle IIDifficulty: mediumAuthor:小鹿 題目:Linked List Cycle II Giv...

    whidy 評論0 收藏0
  • leetcode141-142. Linked List Cycle I & II

    摘要:題目要求這道題目要求判斷一個鏈表中是否有環(huán),如果有環(huán),就返回環(huán)中的第一個節(jié)點。如果有環(huán),就會重復(fù)遇到這個指向的節(jié)點。則該鏈表有環(huán),且該節(jié)點就是環(huán)的起始節(jié)點。但是這個方法會毀壞原來鏈表的數(shù)據(jù)結(jié)構(gòu)。 題目要求 Given a linked list, return the node where the cycle begins. If there is no cycle, return n...

    張巨偉 評論0 收藏0
  • LeetCode 攻略 - 2019 年 7 月上半月匯總(55 題攻略)

    摘要:微信公眾號記錄截圖記錄截圖目前關(guān)于這塊算法與數(shù)據(jù)結(jié)構(gòu)的安排前。已攻略返回目錄目前已攻略篇文章。會根據(jù)題解以及留言內(nèi)容,進行補充,并添加上提供題解的小伙伴的昵稱和地址。本許可協(xié)議授權(quán)之外的使用權(quán)限可以從處獲得。 Create by jsliang on 2019-07-15 11:54:45 Recently revised in 2019-07-15 15:25:25 一 目錄 不...

    warmcheng 評論0 收藏0

發(fā)表評論

0條評論

閱讀需要支付1元查看
<