# 题目

2. Add Two Numbers

You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a linked list.

Input: (2 -> 4 -> 3) + (5 -> 6 -> 4)
Output: 7 -> 0 -> 8

# 思路

不知道各位能不能看懂题目,简单解释一下,就是把整数每一位颠倒进行加法。题目中给出的例子,最初对应342 + 465 = 807,然后颠倒变成243 + 564 = 708,在转换为链表。

这下题目给出链表的定义,我们需要对这种类型的链表进行操作。

        // Definition for singly-linked list.
        public class ListNode
        {
            public int val;
            public ListNode next;
            public ListNode(int x) { val = x; }
        }

方法一:普通遍历,链表l1和l2相应位置相加,再加进位,存入链表result中。

注意点:

  1. 对于一段长于另外一段的链表部分,单独处理。
  2. 进位。
  3. 结果之和长于两个链表的情况,如1 + 999 = 1000。

普通遍历,时间复杂度O(n),空间复杂度O(n),时间204ms。

        // normal traversal: time O(n) space O(n) result: 204ms
        public void calculateSum(ListNode tresult, ref int carry, int sum)
        {
            )
            {
                carry = ;
                tresult.next = );
            }
            else
            {
                carry = ;
                tresult.next = new ListNode(sum);
            }
        }

        public ListNode AddTwoNumbers(ListNode l1, ListNode l2)
        {
            ListNode tl1 = l1, tl2 = l2;
            ListNode result = );
            ListNode tresult = result;
            ;

            // both ListNode 1 and ListNode 2 have values
            while (tl1 != null && tl2 != null)
            {
                calculateSum(tresult, ref carry, tl1.val + tl2.val + carry);
                tl1 = tl1.next;
                tl2 = tl2.next;
                tresult = tresult.next;
            }

            // Debug.Assert(!(tl1 != null && tl2 != null), "tl1 and tl2 aren't null");
            // either ListNode 1 or ListNode 2 has values (maybe) and don't forget carry.
            while (tl1 != null)
            {
                calculateSum(tresult, ref carry, tl1.val + carry);
                tl1 = tl1.next;
                tresult = tresult.next;
            }
            while (tl2 != null)
            {
                calculateSum(tresult,ref carry, tl2.val + carry);
                tl2 = tl2.next;
                tresult = tresult.next;
            }

            // at this time, ListNode 1 and ListNode 2 should be null, however, carry could be null or not
            // Debug.Assert(tl1 == null && tl2 == null, "calculation doesn't finish");
            ) tresult.next = );

            // neither ListNode 1 nor ListNode 2 have values
            return result.next;
        }
        */

方法二:空间优化遍历,链表l1和l2相应位置相加,再加进位,存入链表l1中。方法二的代码没有方法一的代码清晰。

空间优化遍历,时间复杂度O(n),空间复杂度O(1),时间208ms。

        // use ListNode 1 to restore result
        // space (and time, I think, but result doesn't prove) optimized traversal: time O(n) space O(1) result: 208ms
        public ListNode AddTwoNumbers(ListNode l1, ListNode l2)
        {
            if (l1 == null) return l2;
            if (l2 == null) return l1;

            , sum = ;
            ListNode pre = null, result = l1;
            )
            {
                // calculate sum and carry
                sum = ;
                if (l1 != null) sum += l1.val;
                if (l2 != null)
                {
                    sum += l2.val;
                    l2 = l2.next; // ListNode1 will be used below, ListNode2 not, so if ListNode 2 next exists, ListNode 2 move to next
                }
                sum += carry;
                )
                {
                    carry = ;
                    sum -= ;
                }
                else
                {
                    carry = ;
                }

                // find a place for sum in ListNode 1, l1 is in use
                if (l1 != null)
                {
                    pre = l1;
                    ) sum -= ;
                    l1.val = sum;
                    l1 = l1.next;
                }
                else
                {
                    ) sum -= ;
                    pre.next = new ListNode(sum);
                    pre = pre.next;
                }

            }
            return result;
        }
        */

方法三:递归,链表l1和l2相应位置相加,再加进位,存入链表node中。速度最快,是比较好的解决方案。

# 解决(递归)

递归,时间复杂度O(n),空间复杂度O(n),时间196ms。

        // recursive tranversal: time O(n) space:O(n) time: 196ms (why it is faster than normal loop)
        public ListNode AddTwoNumbers(ListNode l1, ListNode l2)
        {
            );
        }

        public ListNode AddTwoNumbers(ListNode l1, ListNode l2, int carry)
        {
            ) return null;

            // calculate sum
            ;
            if (l1 != null) sum += l1.val;
            if (l2 != null) sum += l2.val;
            sum += carry;
            )
            {
                carry = ;
                sum -= ;
            }
            else
            {
                carry = ;
            }

            // set node's next and val and return
            ListNode node = new ListNode(sum);
            node.next = AddTwoNumbers(l1 != null ? l1.next : null, l2 != null ? l2.next : null, carry);
            return node;
        }

# 题外话

为何递归会比循环快呢?百思不得其解,若有高人知道,请指教。

# 测试用例

        static void Main(string[] args)
        {
            _2AddTwoNumbers solution = new _2AddTwoNumbers();
            ListNode l1 = );
            ListNode l2 = );
            ListNode result = );

            // ListNode doesn't have a null constructor, so we can igonore this case
            Debug.Assert(Test.match(solution.AddTwoNumbers(l1, l2), result), "wrong 1");

            // ListNode 1 length is larger than ListNode 2 length
            l1 = );
            l1.next = );
            l1.next.next = );
            l2 = );
            result.next = );
            result.next.next = );
            Debug.Assert(Test.match(solution.AddTwoNumbers(l1, l2), result), "wrong 2");

            // ListNode 2 length is larger than ListNode 1 length and has carries
            l1 = );
            l1.next = );
            l2 = );
            l2.next = );
            l2.next.next = );
            result = );
            result.next = );
            result.next.next = );
            result.next.next.next = );
            Debug.Assert(Test.match(solution.AddTwoNumbers(l1, l2), result), "wrong 3");
        }
  class Test
  {

        public static bool match(_2AddTwoNumbers.ListNode l1, _2AddTwoNumbers.ListNode l2)
        {
            _2AddTwoNumbers.ListNode tl1 = l1, tl2 = l2;
            while(tl1 != null && tl2 != null)
            {
                if (tl1.val != tl2.val) return false;
                tl1 = tl1.next;
                tl2 = tl2.next;
            }
            if (tl1 == null && tl2 == null) return true;
            else return false;
        }

  }

# 地址

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

A: https://github.com/mofadeyunduo/LeetCode/tree/master/2AddTwoNumbers

(希望各位多多支持本人刚刚建立的GitHub和博客,谢谢,有问题可以邮件609092186@qq.com或者留言,我尽快回复)

LeetCode-2AddTwoNumbers(C#)的更多相关文章

  1. LeetCode in action

    (1) Linked List: 2-add-two-numbers,2.cpp 19-remove-nth-node-from-end-of-list,TBD 21-merge-two-sorted ...

  2. 我为什么要写LeetCode的博客?

    # 增强学习成果 有一个研究成果,在学习中传授他人知识和讨论是最高效的做法,而看书则是最低效的做法(具体研究成果没找到地址).我写LeetCode博客主要目的是增强学习成果.当然,我也想出名,然而不知 ...

  3. LeetCode All in One 题目讲解汇总(持续更新中...)

    终于将LeetCode的免费题刷完了,真是漫长的第一遍啊,估计很多题都忘的差不多了,这次开个题目汇总贴,并附上每道题目的解题连接,方便之后查阅吧~ 477 Total Hamming Distance ...

  4. [LeetCode] Longest Substring with At Least K Repeating Characters 至少有K个重复字符的最长子字符串

    Find the length of the longest substring T of a given string (consists of lowercase letters only) su ...

  5. Leetcode 笔记 113 - Path Sum II

    题目链接:Path Sum II | LeetCode OJ Given a binary tree and a sum, find all root-to-leaf paths where each ...

  6. Leetcode 笔记 112 - Path Sum

    题目链接:Path Sum | LeetCode OJ Given a binary tree and a sum, determine if the tree has a root-to-leaf ...

  7. Leetcode 笔记 110 - Balanced Binary Tree

    题目链接:Balanced Binary Tree | LeetCode OJ Given a binary tree, determine if it is height-balanced. For ...

  8. Leetcode 笔记 100 - Same Tree

    题目链接:Same Tree | LeetCode OJ Given two binary trees, write a function to check if they are equal or ...

  9. Leetcode 笔记 99 - Recover Binary Search Tree

    题目链接:Recover Binary Search Tree | LeetCode OJ Two elements of a binary search tree (BST) are swapped ...

  10. Leetcode 笔记 98 - Validate Binary Search Tree

    题目链接:Validate Binary Search Tree | LeetCode OJ Given a binary tree, determine if it is a valid binar ...

随机推荐

  1. 你必须知道的EF知识和经验

    注意:以下内容如果没有特别申明,默认使用的EF6.0版本,code first模式. 推荐MiniProfiler插件 工欲善其事,必先利其器. 我们使用EF和在很大程度提高了开发速度,不过随之带来的 ...

  2. Android混合开发之WebViewJavascriptBridge实现JS与java安全交互

    前言: 为了加快开发效率,目前公司一些功能使用H5开发,这里难免会用到Js与Java函数互相调用的问题,这个Android是提供了原生支持的,不过存在安全隐患,今天我们来学习一种安全方式来满足Js与j ...

  3. 关于VS2015 ASP.NET MVC添加控制器的时候报错

    调试环境:VS2015 数据库Mysql  WIN10 在调试过程中出现类似下两图的同学们,注意啦. 其实也是在学习的过程中遇到这个问题的,找了很多资料都没有正面的解决添加控制器的时候报错的问题,还是 ...

  4. UE4新手引导入门教程

    请大家去这个地址下载:file:///D:/UE4%20Doc/虚幻4新手引导入门教程.pdf

  5. CRL快速开发框架系列教程五(使用缓存)

    本系列目录 CRL快速开发框架系列教程一(Code First数据表不需再关心) CRL快速开发框架系列教程二(基于Lambda表达式查询) CRL快速开发框架系列教程三(更新数据) CRL快速开发框 ...

  6. Aaron Stannard谈Akka.NET 1.1

    Akka.NET 1.1近日发布,带来新特性和性能提升.InfoQ采访了Akka.net维护者Aaron Stannard,了解更多有关Akka.Streams和Akka.Cluster的信息.Aar ...

  7. ASP.NET Core 中文文档 第四章 MVC(4.2)控制器操作的路由

    原文:Routing to Controller Actions 作者:Ryan Nowak.Rick Anderson 翻译:娄宇(Lyrics) 校对:何镇汐.姚阿勇(Dr.Yao) ASP.NE ...

  8. ResponsibleChain(责任链模式)

    /** * 责任链模式 * @author TMAC-J * 老板讲任务交给CTO,CTO自然不会亲自去做,又把人物分配给项目经理,项目经理再把任务分配给组长,组长再分配给个人 * 如果中途哪个环节出 ...

  9. 张小龙宣布微信小程序1月9日发布,并回答了大家最关心的8个问题

    2016 年 12 月 28 日,张小龙在微信公开课 PRO 版的会场上,宣布了微信小程序的正式发布时间. 微信小程序将于 2017 年 1 月 9 号正式上线. 同时他解释称,小程序就像PC时代的网 ...

  10. BPM配置故事之案例9-根据表单数据调整审批线路2

    老李:好久不见啊,小明. 小明:-- 老李:不少部门有物资着急使用,现在的审批流程太慢了,申请时增加一个是否加急的选项吧.如果选加急,金额1000以下的直接到我这里,我审批完就通过,超过1000的直接 ...