LeetCode每日一题:合并两个有序链表(No.21)

662 阅读1分钟

题目:合并两个有序链表


将两个有序链表合并为一个新的有序链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。 

示例:


输入:1->2->4, 1->3->4
输出:1->1->2->3->4->4

思考:


这道题因为是有序链表,只要创建一个新头节点,然后遍历两个链表,比较节点的val,将头节点指向val较小的节点。
最后当一个链表到达末尾,将另一个链表之后的节点全部接到后面即可。

实现:


class Solution {
public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
    ListNode head = new ListNode(0);
    ListNode r = head;
    while (l1 != null && l2 != null) {
        if (l1.val < l2.val) {
            head.next = l1;
            l1 = l1.next;
        } else {
            head.next = l2;
            l2 = l2.next;
        }
        head = head.next;
    }
    if (l1 == null) {
        head.next = l2;
    } else {
        head.next = l1;
    }
    return r.next;
}
}