当前位置:   article > 正文

【leetcode】力扣热门之合并两个有序列表【简单难度】

【leetcode】力扣热门之合并两个有序列表【简单难度】

题目描述

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

用例

在这里插入图片描述
输入:l1 = [1,2,4], l2 = [1,3,4]
输出:[1,1,2,3,4,4]

输入:l1 = [], l2 = []
输出:[]

输入:l1 = [], l2 = [0]
输出:[0]

示例代码

解法:直接合并

/**
 * Definition for singly-linked list.
 * function ListNode(val, next) {
 *     this.val = (val===undefined ? 0 : val)
 *     this.next = (next===undefined ? null : next)
 * }
 */
/**
 * @param {ListNode} list1
 * @param {ListNode} list2
 * @return {ListNode}
 */
var mergeTwoLists = function(list1, list2) {
    while(list2){
        list1=mount(new ListNode(list2.val,list2.next),list1);
        list2=list2.next;
    }
    return list1;
};
const mount=(node,list)=>{
    let rowNode=list;
    let lastNode=list;
    let flag=false;
    node.next=null;//断开之前的 否则会gg
    if(list==null) return node;
    while(list){
        if(node.val<=list.val){
            if(lastNode==list){
                //添加首位置
                let rootNode=node;
                node.next=list;
                rowNode=rootNode;
            }else{
                //添加在中间
                lastNode.next=node;
                node.next=list;
            }
            flag=true;
           break;
        }else{
            lastNode=list;
            list=list.next;
        }
    }
    if(!flag){
        //添加在屁股后
        lastNode.next=node;
    }
     return rowNode;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50

Tip

拆开再合并,再拆 办法虽笨,但胜在理解简单

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/623378
推荐阅读
相关标签
  

闽ICP备14008679号