博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[LeetCode&Python] Problem 21. Merge Two Sorted Lists
阅读量:5158 次
发布时间:2019-06-13

本文共 1333 字,大约阅读时间需要 4 分钟。

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->4Output: 1->1->2->3->4->4
# Definition for singly-linked list.# class ListNode(object):#     def __init__(self, x):#         self.val = x#         self.next = Noneclass 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

  

转载于:https://www.cnblogs.com/chiyeung/p/10122525.html

你可能感兴趣的文章
注意java的对象引用
查看>>
C++ 面向对象 类成员函数this指针
查看>>
NSPredicate的使用,超级强大
查看>>
自动分割mp3等音频视频文件的脚本
查看>>
判断字符串是否为空的注意事项
查看>>
布兰诗歌
查看>>
js编码
查看>>
Pycharm Error loading package list:Status: 403错误解决方法
查看>>
steps/train_sat.sh
查看>>
转:Linux设备树(Device Tree)机制
查看>>
iOS 组件化
查看>>
(转)Tomcat 8 安装和配置、优化
查看>>
(转)Linxu磁盘体系知识介绍及磁盘介绍
查看>>
tkinter布局
查看>>
命令ord
查看>>
Sharepoint 2013搜索服务配置总结(实战)
查看>>
博客盈利请先考虑这七点
查看>>
使用 XMLBeans 进行编程
查看>>
写接口请求类型为get或post的时,参数定义的几种方式,如何用注解(原创)--雷锋...
查看>>
【OpenJ_Bailian - 2287】Tian Ji -- The Horse Racing (贪心)
查看>>