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

溫馨提示×

溫馨提示×

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

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

C++混合插入有序鏈表的方法是什么

發布時間:2022-10-22 15:29:24 來源:億速云 閱讀:118 作者:iii 欄目:編程語言

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

混合插入有序鏈表

Example:

Input: 1->2->4, 1->3->4
Output: 1->1->2->3->4->4

這道混合插入有序鏈表和我之前那篇混合插入有序數組非常的相似 Merge Sorted Array,僅僅是數據結構由數組換成了鏈表而已,代碼寫起來反而更簡潔。具體思想就是新建一個鏈表,然后比較兩個鏈表中的元素值,把較小的那個鏈到新鏈表中,由于兩個輸入鏈表的長度可能不同,所以最終會有一個鏈表先完成插入所有元素,則直接另一個未完成的鏈表直接鏈入新鏈表的末尾。代碼如下:

C++ 解法一:

class Solution {
public:
    ListNode* mergeTwoLists(ListNode* l1, ListNode* l2) {
        ListNode *dummy = new ListNode(-1), *cur = dummy;
        while (l1 && l2) {
            if (l1->val < l2->val) {
                cur->next = l1;
                l1 = l1->next;
            } else {
                cur->next = l2;
                l2 = l2->next;
            }
            cur = cur->next;
        }
        cur->next = l1 ? l1 : l2;
        return dummy->next;
    }
};

Java 解法一:

public class Solution {
    public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
        ListNode dummy = new ListNode(-1), cur = dummy;
        while (l1 != null && l2 != null) {
            if (l1.val < l2.val) {
                cur.next = l1;
                l1 = l1.next;
            } else {
                cur.next = l2;
                l2 = l2.next;
            }
            cur = cur.next;
        }
        cur.next = (l1 != null) ? l1 : l2;
        return dummy.next;
    }
}

下面我們來看遞歸的寫法,當某個鏈表為空了,就返回另一個。然后核心還是比較當前兩個節點值大小,如果 l1 的小,那么對于 l1 的下一個節點和 l2 調用遞歸函數,將返回值賦值給 l1.next,然后返回 l1;否則就對于 l2 的下一個節點和 l1 調用遞歸函數,將返回值賦值給 l2.next,然后返回 l2,參見代碼如下:

C++ 解法二:

class Solution {
public:
    ListNode* mergeTwoLists(ListNode* l1, ListNode* l2) {
        if (!l1) return l2;
        if (!l2) return l1;
        if (l1->val < l2->val) {
            l1->next = mergeTwoLists(l1->next, l2);
            return l1;
        } else {
            l2->next = mergeTwoLists(l1, l2->next);
            return l2;
        }
    }
};

Java 解法二:

public class Solution {
    public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
        if (l1 == null) return l2;
        if (l2 == null) return l1;
        if (l1.val < l2.val) {
            l1.next = mergeTwoLists(l1.next, l2);
            return l1;
        } else {
            l2.next = mergeTwoLists(l1, l2.next);
            return l2;
        }
    }
}

下面這種遞歸的寫法去掉了 if 從句,看起來更加簡潔一些,但是思路并沒有什么不同:

C++ 解法三:

class Solution {
public:
    ListNode* mergeTwoLists(ListNode* l1, ListNode* l2) {
        if (!l1) return l2;
        if (!l2) return l1;
        ListNode *head = l1->val < l2->val ? l1 : l2;
        ListNode *nonhead = l1->val < l2->val ? l2 : l1;
        head->next = mergeTwoLists(head->next, nonhead);
        return head;
    }
};

Java 解法三:

public class Solution {
    public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
        if (l1 == null) return l2;
        if (l2 == null) return l1;
        ListNode head = (l1.val < l2.val) ? l1 : l2;
        ListNode nonhead = (l1.val < l2.val) ? l2 : l1;
        head.next = mergeTwoLists(head.next, nonhead);
        return head;
    }
}

 我們還可以三行搞定,簡直喪心病狂有木有!

C++ 解法四:

class Solution {
public:
    ListNode* mergeTwoLists(ListNode* l1, ListNode* l2) {
        if (!l1 || (l2 && l1->val > l2->val)) swap(l1, l2);
        if (l1) l1->next = mergeTwoLists(l1->next, l2);
        return l1;
    }
};

Java 解法四:

public class Solution {
    public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
        if (l1 == null || (l2 != null && l1.val > l2.val)) {
            ListNode t = l1; l1 = l2; l2 = t;
        }
        if (l1 != null) l1.next = mergeTwoLists(l1.next, l2);
        return l1;
    }
}

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

向AI問一下細節

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

c++
AI

河东区| 罗山县| 昌平区| 东丰县| 宁阳县| 饶河县| 五原县| 家居| 哈密市| 大关县| 武夷山市| 桐梓县| 凉山| 农安县| 保靖县| 巴楚县| 哈尔滨市| 红桥区| 嘉义市| 富锦市| 桐乡市| 建德市| 涡阳县| 泗阳县| 西贡区| 临西县| 班玛县| 桑植县| 贵溪市| 博客| 会宁县| 西和县| 南川市| 吉水县| 桐乡市| 剑川县| 孙吴县| 临夏县| 沈阳市| 新竹市| 莲花县|