Leetcode0002

Posted Eric%258436

tags:

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

直奔主题

题目源自leetcode,题目编号0002

给你两个非空 的链表,表示两个非负的整数。它们每位数字都是按照逆序的方式存储的,并且每个节点只能存储 一位数字。
请你将两个数相加,并以相同形式返回一个表示和的链表。 你可以假设除了数字 0 之外,这两个数都不会以 0 开头。

我的个人想法是暴力,或者递归,自己写的太菜,一点点报错改条件,最终写出来了一个,去看了题解,发现思路虽然差不多,但是算法的精简程度和节点判断的把控还是有很大的距离,有待进步。

官方题解的思路是暴力法。
因为是逆序,所以直接一个个算就行了,注意进位和条件判断。

// leetcode 官方题解
class Solution {
    public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
        ListNode head = null, tail = null;
        int carry = 0;
        while (l1 != null || l2 != null) {
            int n1 = l1 != null ? l1.val : 0;
            int n2 = l2 != null ? l2.val : 0;
            int sum = n1 + n2 + 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;
    }
}

看到国内一大神用5行递归解决。使用?:和递归
递归的逻辑仍是一位位算,把循环换成了递归函数。

class Solution {

    public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
        return r(l1,l2,0);
    }

    private ListNode r(ListNode l1,ListNode l2,int add){
        //递归出口:两个链表都到末尾且无进位,则返回null
        if (l1==null && l2==null && add==0) return null;
        //每步工作,计算当前节点的值,为两个链表节点的值+进位的值
        int val = add+(l1!=null?l1.val:0)+(l2!=null?l2.val:0);
        ListNode curNode = new ListNode(val%10);
        //递归的设置当前节点的后继节点
        curNode.next = r(l1==null?null:l1.next,l2==null?null:l2.next,val>=10?1:0);
        //返回当前节点
        return curNode;
    }
}

这是国内大神最高赞的解题算法,算法解图挺不错的,推荐去看一下。

class Solution {
    public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
        ListNode pre = new ListNode(0);
        ListNode cur = pre;
        int carry = 0;
        while(l1 != null || l2 != null) {
            int x = l1 == null ? 0 : l1.val;
            int y = l2 == null ? 0 : l2.val;
            int sum = x + y + carry;
            
            carry = sum / 10;
            sum = sum % 10;
            cur.next = new ListNode(sum);

            cur = cur.next;
            if(l1 != null)
                l1 = l1.next;
            if(l2 != null)
                l2 = l2.next;
        }
        if(carry == 1) {
            cur.next = new ListNode(carry);
        }
        return pre.next;
    }
}

以上是关于Leetcode0002的主要内容,如果未能解决你的问题,请参考以下文章

编程艺术0002_两数相加_解法

编程艺术0002_两数相加_解法

leetcode_1292. Maximum Side Length of a Square with Sum Less than or Equal to Threshold_[二维前缀和](代码片段

Leetcode.1024 视频拼接

XPath 笔记本:XError:Focus for / 不存在;代码:XPDY0002

LeetCode810. 黑板异或游戏/455. 分发饼干/剑指Offer 53 - I. 在排序数组中查找数字 I/53 - II. 0~n-1中缺失的数字/54. 二叉搜索树的第k大节点(代码片段