Merge Sorted Lists

Source: Internet
Author: User

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

This problem is similar to the add two numbers, noting that there are unequal lengths, and considering the use of dummy node as the result of the head element, the time complexity O (n+m), n is the length of the two linked list respectively. Space complexity O (1). The code is as follows:

classsolution (object):defmergetwolists (self, L1, L2):""": Type L1:ListNode:type l2:ListNode:rtype:ListNode"""        if  notL1 and  notL2:returnNone Dummy= ListNode (-1) cur=Dummy whileL1 andL2:ifL1.val <L2.val:cur.next=ListNode (l1.val) L1=L1.nextElse: Cur.next=ListNode (l2.val) L2=L2.next cur=Cur.next Cur.next= L1ifL1ElseL2returnDummy.next

Merge Sorted Lists

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.