两个链表相加

两个链表相加

思路

  • 用两个栈分别存储两个链表,用 头插法 构建结果链表。

代码

/*
 * function ListNode(x){
 *   this.val = x;
 *   this.next = null;
 * }
 */

/**
 * 
 * @param head1 ListNode类 
 * @param head2 ListNode类 
 * @return ListNode类
 */
function addInList( head1 ,  head2 ) {
    // write code here
    let stack1 = [];
    let stack2 = [];
    let p = head1;
    let q = head2;
    while(p){
        stack1.push(p.val);
        p = p.next;
    }
    while(q){
        stack2.push(q.val);
        q = q.next;
    }
    
    let jinwei = 0;
    let head = new ListNode(0);
    while(stack1.length>0 || stack2.length>0){
        let a = stack1.length==0 ? 0 : stack1.pop();
        let b = stack2.length==0 ? 0 : stack2.pop();
        let sum = a + b + jinwei;
        let temp = new ListNode(sum%10);
        jinwei = Math.floor(sum/10);
        // 头插法
        let next = head.next;
        head.next = temp;
        temp.next = next;
    }
    if(jinwei>0){
        let temp = new ListNode(jinwei);
        let next = head.next;
        head.next = temp;
        temp.next = next;
    }
    return head.next;
}
module.exports = {
    addInList : addInList
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值