合并两个有序链表
一、要求
将两个有序链表合并为一个新的有序链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。
示例:
输入:1->2->4, 1->3->4 输出:1->1->2->3->4->4
二、解法
(1)非递归实现
public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
//设置一个虚拟的头结点,最后返回它的下一个结点
ListNode virtualFirstNode = new ListNode(0);
//当前结点,每次合并元素后,都会右移
ListNode currentNode = virtualFirstNode;
//第一个while,只要l1和l2都还有元素时,依据大小进行合并
while (l1 != null && l2 != null) {
if (l1.val <= l2.val) {
currentNode.next = l1;
l1 = l1.next;
} else {
currentNode.next = l2;
l2 = l2.next;
}
currentNode = currentNode.next;
}
//第二个while,此时l2已经为空,则将l1剩余的结点合并到新链表中
while (l1 != null) {
currentNode.next = l1;
l1 = l1.next;
currentNode = currentNode.next;
}
//第三个while,此时l1已经为空,则将l2剩余的结点合并到新链表中
while (l2 != null) {
currentNode.next = l2;
l2 = l2.next;
currentNode = currentNode.next;
}
return virtualFirstNode.next;
}
代码提交结果
(2)递归实现
public ListNode mergeTwoLists2(ListNode l1, ListNode l2) {
//递归的最小规模解
if (l1 == null) {
return l2;
}
if (l2 == null) {
return l1;
}
//递归的规模分解
if (l1.val <= l2.val) {
l1.next = mergeTwoLists2(l1.next, l2);
return l1;
} else {
l2.next = mergeTwoLists2(l1, l2.next);
return l2;
}
}
代码提交结果: