码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2018-12-15 11:52:52      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:tput   highlight   sort   pytho   python   des   input   object   lse   

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

标签:tput   highlight   sort   pytho   python   des   input   object   lse   

原文地址:https://www.cnblogs.com/chiyeung/p/10122525.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!