LeetCode 21. Merge Two Sorted Lists
LeetCode 21. Merge Two Sorted Lists (合并两个有序链表)
题目
链接
https://leetcode-cn.com/problems/merge-two-sorted-lists/
问题描述
将两个有序链表合并为一个新的有序链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。
示例
输入:1->2->4, 1->3->4
输出:1->1->2->3->4->4
简单的链表题目,可以循环做,也可以递归做,这里采用的是递归。
如果结点为空,那么后面就不用继续判断,直接加到尾部即可,不然的话就需要比较两个结点的大小,小的加入,大的继续运算。
思路
复杂度分析
时间复杂度 O(n)
空间复杂度 O(1)
代码
Java
public ListNode mergeTwoLists(ListNode list1, ListNode list2) {
if (list1 == null) {
return list2;
}
if (list2 == null) {
return list1;
}
ListNode pre = new ListNode();
ListNode cur = pre;
while (list1 != null && list2 != null) {
if (list1.val < list2.val) {
cur.next = list1;
list1 = list1.next;
} else {
cur.next = list2;
list2 = list2.next;
}
cur = cur.next;
}
if (list1 == null) {
cur.next = list2;
} else {
cur.next = list1;
}
return pre.next;
}