Merge Two Sorted Lists (E)
Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.
Example:
Input: 1->2->4, 1->3->4
Output: 1->1->2->3->4->4
题意
将两个有序链表合并为一个有序链表。
思路
归并排序。
代码实现 - 非递归
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
class Solution {
public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
ListNode head = new ListNode(0);
ListNode pointer = head;
while (l1 != null && l2 != null) {
if (l1.val < l2.val) {
pointer.next = l1;
l1 = l1.next;
} else {
pointer.next = l2;
l2 = l2.next;
}
pointer = pointer.next;
}
if (l1 == null) {
pointer.next = l2;
}
if (l2 == null) {
pointer.next = l1;
}
return head.next;
}
}
代码实现 - 递归
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
class Solution {
public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
if (l1 == null) {
return l2;
}
if (l2 == null) {
return l1;
}
if (l1.val < l2.val) {
l1.next = mergeTwoLists(l1.next, l2);
return l1;
} else {
l2.next = mergeTwoLists(l1, l2.next);
return l2;
}
}
}
本文介绍了一种将两个已排序的链表合并成一个新排序链表的方法。通过使用归并排序的思想,提供了两种实现方式:非递归和递归。非递归方法通过遍历两个链表并比较节点值来构建新链表;递归方法则通过递归调用自身,直至其中一个链表为空,然后将另一个链表剩余部分连接到当前节点。
1477

被折叠的 条评论
为什么被折叠?



