91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++怎么解決單鏈表中的環問題

發布時間:2022-03-28 15:44:38 來源:億速云 閱讀:177 作者:iii 欄目:大數據

本文小編為大家詳細介紹“C++怎么解決單鏈表中的環問題”,內容詳細,步驟清晰,細節處理妥當,希望這篇“C++怎么解決單鏈表中的環問題”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

單鏈表中的環

Example 1:

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

Output: true

Explanation: There is a cycle in the linked list, where tail connects to the second node.

C++怎么解決單鏈表中的環問題

Example 2:

Input: head = [1,2], pos = 0
Output: true
Explanation: There is a cycle in the linked list, where tail connects to the first node.

C++怎么解決單鏈表中的環問題

Example 3:

Input: head = [1], pos = -1
Output: false
Explanation: There is no cycle in the linked list.

C++怎么解決單鏈表中的環問題

Follow up:

Can you solve it using O(1) (i.e. constant) memory?

這道題是快慢指針的經典應用。只需要設兩個指針,一個每次走一步的慢指針和一個每次走兩步的快指針,如果鏈表里有環的話,兩個指針最終肯定會相遇。實在是太巧妙了,要是我肯定想不出來。代碼如下:

C++ 解法:

class Solution {
public:
    bool hasCycle(ListNode *head) {
        ListNode *slow = head, *fast = head;
        while (fast && fast->next) {
            slow = slow->next;
            fast = fast->next->next;
            if (slow == fast) return true;
        }
        return false;
    }
};

Java 解法:

public class Solution {
    public boolean hasCycle(ListNode head) {
        ListNode slow = head, fast = head;
        while (fast != null && fast.next != null) {
            slow = slow.next;
            fast = fast.next.next;
            if (slow == fast) return true;
        }
        return false;
    }
}

讀到這里,這篇“C++怎么解決單鏈表中的環問題”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

c++
AI

济宁市| 双峰县| 抚远县| 双城市| 荥阳市| 金门县| 阿拉善左旗| 阜城县| 陇川县| 灵璧县| 贺兰县| 徐汇区| 德庆县| 星座| 怀远县| 浠水县| 邮箱| 龙口市| 澄迈县| 海原县| 武邑县| 玉环县| 桦川县| 长兴县| 临江市| 哈密市| 安顺市| 齐河县| 台州市| 尉犁县| 枝江市| 搜索| 南阳市| 敦化市| 巴塘县| 莱西市| 文安县| 五指山市| 绥棱县| 汝南县| 峨眉山市|