leetcode445链表求和

题目:
在这里插入图片描述

思路:可以看看官方题解
代码:

class Solution {
    public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
        Stack<Integer> stack1=buildstack(l1);
        Stack<Integer> stack2=buildstack(l2);
        int carry=0;
        ListNode dummy=new ListNode(-1);//新建一个节点 指向头结点 
        while(!stack1.isEmpty()||!stack2.isEmpty()||carry!=0){
            int x=stack1.isEmpty()?0:stack1.pop();
            int y=stack2.isEmpty()?0:stack2.pop();
            int sum=x+y+carry;

            // carry=sum%10;
            // ListNode node=new ListNode();
            // node.val=carry;

            ListNode node=new ListNode(sum%10);
            //存储 7087
            node.next=dummy.next;//这个看半天 一个节点看不明白的时候画两个
            dummy.next=node; 

            carry=sum/10;//有进位传递
        }
        return dummy.next;
        


    }
    //将链表值进栈
    public Stack<Integer> buildstack(ListNode l){
        Stack<Integer> stack=new Stack<Integer>();
        while(l!=null){
            stack.push(l.val);
            l=l.next;
        }
        return stack;
    }

时间复杂度:O(max(m, n))

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值