亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

水城县| 泸溪县| 镇雄县| 洮南市| 土默特左旗| 班玛县| 罗山县| 安塞县| 崇明县| 沈丘县| 汉中市| 平泉县| 积石山| 南木林县| 浪卡子县| 阳朔县| 焉耆| 峨边| 合肥市| 宁武县| 宁蒗| 上蔡县| 阳城县| 松桃| 合川市| 新巴尔虎右旗| 泸溪县| 弋阳县| 岐山县| 崇信县| 北票市| 太和县| 宝丰县| 栾川县| 亳州市| 孟津县| 大安市| 灌南县| 宣城市| 黄大仙区| 安塞县|