List两数相加

声明:本题来自力扣,点击标题可以跳转到力扣对应题目,本博客是我跟着花花酱的题目清单做题的笔记博客,主要是自己的学习记录。

2.两数相加

首先我们先简述一下这个题目:
有两个非空单链表,现在要做十进制加法,将两个链表相加,低位放在个位在链表的头部,如果相加大于9,就要向前面一个进位,大致可以表示成下图
在这里插入图片描述
这个时候就要思考如何进位。
在学习汇编语言和计算机组成原理的时候想必大家都听说过一个标志位叫进位标志位CF,或者你没有学过也知道在小学算加法的时候会有进位标识,那进位我们只要加一个进位标识就好.
一般的进位大家都不会加错,但是在最后一个进位的时候就会忘记加,是这个程序里需要特别注意的一点
代码如下

class Solution {
    public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
        ListNode head = null;
        ListNode tail = null;
        //进位标志
        int carry = 0;
        int num1;
        int num2;
        while(l1 != null || l2 != null){
        /*
        这一段可以优化成
        num1 = l1 != null ? l1.val : 0;
        num2 = l2 != null ? l2.val : 0;
        */
            if(l1 == null){
                num1 = 0;
            }else{
                num1 = l1.val;
            }
            if(l2 == null){
                num2 = 0;
            }else{
                num2 = l2.val;
            }

            int sum = num1 + num2 + carry;

            if(head == null){
                head = tail = new ListNode(sum % 10);
            }else{
                tail.next = new ListNode(sum % 10);
                tail = tail.next;
            }

            carry = sum/10;

            if(l1 != null){
                l1 = l1.next;
            }
            if(l2 != null){
                l2 = l2.next;
            }
        }
        //这里是处理最后一位进位的
        if(carry > 0){
            tail.next = new ListNode(carry);
        }

        return head;
    }
}

445.两数相加二

这题最重要的是链表的顺序和上面的是相反的,就是高位存在链表的首位,最终的方法是差不多的
首先考虑到了用栈,大致的思维图如下图所示:
在这里插入图片描述
就是队列先放到栈里,然后再相加入栈,再从栈里出来变成队列,这里就充分使用了栈的先进后出出的特征

class Solution {
    public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
        ListNode head = null, tail = null;
        int carry = 0;

        Stack<Integer> stackL1 = new Stack();
        Stack<Integer> stackL2 = new Stack();
        Stack<Integer> stack = new Stack();

        while(l1 != null){
            stackL1.push(l1.val);
            l1 = l1.next;
        }

        while(l2 != null){
            stackL2.push(l2.val);
            l2 = l2.next;
        }

        while(!stackL1.isEmpty() || !stackL2.isEmpty()){
            int num1 = !stackL1.isEmpty() ? stackL1.pop() : 0;
            int num2 = !stackL2.isEmpty() ? stackL2.pop() : 0;

            int sum = num1 + num2 + carry;

            stack.push(sum % 10);

            carry = sum / 10;
        }

        if(carry > 0){
            stack.push(carry);
        }

        while(!stack.isEmpty()){
            if(head == null){
                head = tail = new ListNode(stack.pop());
            }else{
                tail.next = new ListNode(stack.pop());
                tail = tail.next;
            }
        }

        return head;
    }
}

很显然这样做是很浪费空间的,而且很多循环,时间也很久。
在这里插入图片描述

然后我在题解区看到了一个更加明智的做法
那就相加的数直接变成链表,而不入栈再出栈,同时使用迭代的方式将链表反转
下面是链表反转的代码

ListNode tail = new ListNode(sum);
            tail.next = head;
            head = tail;

基本思维的图解是
在这里插入图片描述
接下里就是优化的代码:

class Solution {
    public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
        ListNode head = null;
        int carry = 0;

        Stack<Integer> stackL1 = new Stack();
        Stack<Integer> stackL2 = new Stack();

        while(l1 != null){
            stackL1.push(l1.val);
            l1 = l1.next;
        }

        while(l2 != null){
            stackL2.push(l2.val);
            l2 = l2.next;
        }

        while(!stackL1.isEmpty() || !stackL2.isEmpty() || carry != 0){
            int num1 = !stackL1.isEmpty() ? stackL1.pop() : 0;
            int num2 = !stackL2.isEmpty() ? stackL2.pop() : 0;

            int sum = num1 + num2 + carry;
            ListNode tail = new ListNode(sum % 10);
            tail.next = head;
            head = tail;

            carry = sum / 10;
        }
        return head;
    }
}

一个小插曲

在我看历史提交的时候看到一个只用了3ms的,我很好奇的去看了一下
在这里插入图片描述
我发现方法是完全一样的,但是有一段代码是这样的,将下面的代码

 while(l1 != null){
            stackL1.push(l1.val);
            l1 = l1.next;
        }

        while(l2 != null){
            stackL2.push(l2.val);
            l2 = l2.next;
        }

换成

 while(l1 != null || l2 != null){
            if(l1 != null){
                stack1.push(l1.val);
                l1 = l1.next;
            }
            if(l2 != null){
                stack2.push(l2.val);
                l2 = l2.next;
            }
        }

但是我改了以后还是没有什么变化,于是我把原来的代码拿上去跑,最后还是5ms。

力扣做题,有的时候是看网速的吗?哈哈哈!

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值