Leetcode-21.合并两个有序链表

Leetcode-21.合并两个有序链表

将两个有序链表合并为一个新的有序链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。

示例:

输入:1->2->4, 1->3->4
输出:1->1->2->3->4->4

思路

引入prep,修改两个链表指针,不需要新建节点

# 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
        """
        prep=ListNode(-1)
        head=prep
        while l1 and l2:
            if l1.val<=l2.val:
                prep.next=l1
                prep=l1
                l1=l1.next
            else:
                prep.next=l2
                prep=l2
                l2=l2.next
        if l1:
            prep.next=l1
        if l2:
            prep.next=l2
        return head.next

执行用时 :16 ms, 在所有 python 提交中击败了99.30%的用户

内存消耗 :11.8 MB, 在所有 python 提交中击败了22.17%的用户

小总结

对于链表问题,可以从修改指针的角度思考,可以有效减少复杂度。

你可能感兴趣的:(Python)