·
·
文章目录
  1. 题目介绍
  2. 解题思路

Merge Two Sorted Lists

题目介绍

LeetCode 21. Merge Two Sorted Lists,题目的意思就是合并链表。

解题思路

其实很简单的思路就是不停的比较两个链表中的元素大小,然后依次插入即可。刚刚开始写了很冗长的判断,后来看了 Discuss 递归的方式,原理一致,代码更加简洁。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
public class ListNode {
public var val: Int
public var next: ListNode?
public init(_ val: Int) {
self.val = val
self.next = nil
}
}

class Solution {
func mergeTwoLists(_ l1: ListNode?, _ l2: ListNode?) -> ListNode? {

if l1 == nil {
return l2
}

if l2 == nil {
return l1
}

if l1!.val < l2!.val {
l1?.next = mergeTwoLists(l1?.next, l2)
return l1
} else {
l2?.next = mergeTwoLists(l1, l2?.next)
return l2
}
}
}
**版权声明**

Ivan’s Blog by Ivan Ye is licensed under a Creative Commons BY-NC-ND 4.0 International License.
叶帆创作并维护的叶帆的博客博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证

本文首发于Ivan’s Blog | 叶帆的博客博客( http://yeziahehe.com ),版权所有,侵权必究。

本文链接:http://yeziahehe.com/2017/11/11/MergeTwoSortedLists/

支持一下
扫一扫,支持yeziahehe
  • 微信扫一扫
  • 支付宝扫一扫