Task7:2つの注文のリストをマージ

タイトル

2は、新たなソートされたリストとリターンにリストを命じました。新しいリストは、二つのリストで構成与えられたモザイク内のすべてのノードです。

問題解決

class Solution:
    def mergeTwoLists(self, l1: ListNode, l2: ListNode) -> ListNode:
        prehead = ListNode(-1)

        prev = prehead
        while l1 and l2:
            if l1.val <= l2.val:
                prev.next = l1
                l1 = l1.next
            else:
                prev.next = l2
                l2 = l2.next            
            prev = prev.next

        # exactly one of l1 and l2 can be non-null at this point, so connect
        # the non-null list to the end of the merged list.
        prev.next = l1 if l1 is not None else l2

        return prehead.next

著者:LeetCodeの
リンクします。https://leetcode-cn.com/problems/merge-two-sorted-lists/solution/he-bing-liang-ge-you-xu-lian-biao-by-leetcode/
出典:力バックル(LeetCode)
の著作権は著者が保有します。著者は認可商業転載してください接触、非商用の転載は、ソースを明記してください。

リリース5元の記事 ウォンの賞賛0 ビュー98

おすすめ

転載: blog.csdn.net/weixin_43535441/article/details/104725123