[LeetCode&Python] Problem 21. Merge Two Sorted Lists

Posted chiyeung

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[LeetCode&Python] Problem 21. Merge Two Sorted Lists相关的知识,希望对你有一定的参考价值。

Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.

Example:

Input: 1->2->4, 1->3->4
Output: 1->1->2->3->4->4
# Definition for singly-linked list.
# class ListNode(object):
#     def __init__(self, x):
#         self.val = x
#         self.next = None

class Solution(object):
    def mergeTwoLists(self, l1, l2):
        """
        :type l1: ListNode
        :type l2: ListNode
        :rtype: ListNode
        """
        if not l1 and l2:
            return l2
        if not l2 and l1:
            return l1
        if not l1 and not l2:
            return []
        
        it1=l1
        it2=l2
        if it1.val<=it2.val:
            node=ListNode(it1.val)
            it1=it1.next
        else:
            node=ListNode(it2.val)
            it2=it2.next
        ll=node
        while it1 and it2:
            if it1.val<=it2.val:
                node1=ListNode(it1.val)
                it1=it1.next
                node.next=node1
                node=node1
            else:
                node1=ListNode(it2.val)
                node.next=node1
                node=node1
                it2=it2.next
            
        if it1:
            node.next=it1
        elif it2:
            node.next=it2
        return ll

  

以上是关于[LeetCode&Python] Problem 21. Merge Two Sorted Lists的主要内容,如果未能解决你的问题,请参考以下文章

C++&Python描述 LeetCode C++&Python描述 LeetCode 剑指 Offer 22. 链表中倒数第k个节点

[LeetCode&Python] Problem 202. Happy Number

[LeetCode&Python] Problem 520. Detect Capital

[LeetCode&Python] Problem 383. Ransom Note

[LeetCode&Python] Problem 458. Poor Pigs

[LeetCode&Python] Problem 682. Baseball Game