合并两个有序链表

192 阅读1分钟

题目

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

解法

/**
 * Definition for singly-linked list.
 * function ListNode(val, next) {
 *     this.val = (val===undefined ? 0 : val)
 *     this.next = (next===undefined ? null : next)
 * }
 */
/**
 * @param {ListNode} l1
 * @param {ListNode} l2
 * @return {ListNode}
 */
var mergeTwoLists = function(l1, 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{
        console.log('my output',JSON.stringify(l2),Object.prototype.toString(l2) );
        l2.next = mergeTwoLists(l1, l2.next);
        return l2;
    }
};

stdout

my output {"val":1,"next":{"val":3,"next":{"val":4,"next":null}}} [object Object]
my output {"val":3,"next":{"val":4,"next":null}} [object Object]
my output {"val":4,"next":null} [object Object]

注意点

传入的不是数组,是链表 console.log('my output',JSON.stringify(l2),Object.prototype.toString(l2) );