博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
每日一题 LeetCode 两有序链表的合并
阅读量:6366 次
发布时间:2019-06-23

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

class ListNode:

def init(self, x):
self.val = x
self.next = None
class Solution:
def mergeTwoLists(self, l1, l2):
"""
:type l1: ListNode
:type l2: ListNode
:rtype: ListNode
"""

head = ListNode(0)    first = head    while l1!=None and l2!=None:        if l1.val <= l2.val:            head.next = l1            l1 = l1.next        else:            head.next = l2            l2 = l2.next        head = head.next    if l1 != None:        head.next = l1    elif l2 != None:        head.next = l2    return first.next

head1 = ListNode(1)

n1 = ListNode(2)
n2 = ListNode(4)
n3 = ListNode(5)
head1.next = n1
n1.next = n2
n2.next = n3

有序链表

head2 = ListNode(1)

m1 = ListNode(2)
m2 = ListNode(3)
m3 = ListNode(8)
head2.next = m1
m1.next = m2
m2.next = m3

s = Solution()

res = s.mergeTwoLists(head1,head2)
while res:
print(res.val)
res = res.next

转载于:https://blog.51cto.com/13930723/2311551

你可能感兴趣的文章
Google Chrome 快捷方式
查看>>
备考PMP心得体会
查看>>
vue proxy匹配规则
查看>>
线上应用故障排查之一:高CPU占用
查看>>
Extend Volume 操作 - 每天5分钟玩转 OpenStack(56)
查看>>
review what i studied `date` - 2017-4-1
查看>>
IronPython教程
查看>>
squid via检测转发循环
查看>>
计算分页
查看>>
iptables 做nat路由器脚本
查看>>
数据结构(C语言版)第三章:栈和队列
查看>>
Keepalive 之 keepalive概念介绍
查看>>
Stopping and/or Restarting an embedded Jetty in...
查看>>
Oracle存储过程中的数据集输入参数
查看>>
vsftp 配置
查看>>
VCSA中配置时间和时区,实测至6.5适用
查看>>
高并发IM系统架构优化实践
查看>>
产品经理教你玩转阿里云负载均衡SLB系列(一):快速入门--什么是负载均衡
查看>>
有关linux--进程组、会话、守护进程详解
查看>>
我的友情链接
查看>>