博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【剑指offer】Q17:合并两个排序的链表
阅读量:6148 次
发布时间:2019-06-21

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

def Merge(head1, head2):	if head1 == None: return head2	if head2 == None: return head1	psuhead = ListNode(-1)	tail = psuhead	while head1 and head2:		if head1.val < head2.val: 			cur = head1			head1 = head1.next		else:			cur = head2			head2 = head2.next		cur.next = tail.next		tail.next = cur		tail = cur		Print(psuhead)	# link the rest nodes	if head1 == None: head1 = head2	tail.next = head1	head1 = psuhead.next	del psuhead	psuhead = None	return head1

转载地址:http://rbmya.baihongyu.com/

你可能感兴趣的文章
分享一个 ftp下载、解压、更新依赖库文件的 python 脚本
查看>>
inner class 多线程实现
查看>>
android Setting
查看>>
CentOS6.5常用命令
查看>>
小白javascript做考试页(一)
查看>>
Java使用SQLServerBulkCopy实现数据库批量操作
查看>>
Web开发中需要了解的东西
查看>>
PHP如何在CLI命令模式下连接Postgresql
查看>>
undefined,null ,"",0
查看>>
npm install -g react-native-cli 报错:errno -4048
查看>>
程序员工作中绕不开的9大问题,你遇到过几个?
查看>>
mac 安装 nginx 环境
查看>>
详解最大似然估计(MLE)、最大后验概率估计(MAP),以及贝叶斯公式的理解...
查看>>
我的友情链接
查看>>
重装系统再也不用担心桌面文件丢失了
查看>>
家用NAS也可以配置iSCSI盘
查看>>
我的友情链接
查看>>
MySQL复制表结构和数据SQL语句
查看>>
网站安全那些事
查看>>
清理prometheus指定key的数据
查看>>