leetcode 2 两数之和

Posted 行尸走肉

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 2 两数之和相关的知识,希望对你有一定的参考价值。

https://leetcode-cn.com/problems/add-two-numbers/

 

      ListNode root  = new ListNode(0);
            ListNode cur = root;
            int retain = 0;
            while (l1!=null || l2!=null || retain!=0) {
                int l1_val = l1==null ? 0 : l1.val;
                int l2_val = l2==null ? 0 : l2.val;
                int sum = l1_val+l2_val+retain;
                //cur.val = sum%10;
                cur.next = new ListNode(sum%10);
                cur = cur.next;
                retain = sum /10;

                if(l1!=null) l1 = l1.next;
                if(l2!=null) l2 = l2.next;
            }
            cur.next=null;
            return root.next;

这个倒序,其实就是从个位数开始求和。要注意向后一位进位。

以上是关于leetcode 2 两数之和的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode第5天 - 283. 移动零 | 167. 两数之和 II - 输入有序数组

leetcode_01两数之和

LeetCode 两数之和 twoSum

LeetCode——1.两数之和

Leetcode-探索 | 两数之和

LeetCode 1.两数之和