0
  • 聊天消息
  • 系统消息
  • 评论与回复
登录后你可以
  • 下载海量资料
  • 学习在线课程
  • 观看技术视频
  • 写文章/发帖/加入社区
会员中心
创作中心

完善资料让更多小伙伴认识你,还能领取20积分哦,立即完善>

3天内不再提示

Add Two Numbers

汽车电子技术 来源:神经网络与强化学习 作者:Jemma Liu 2023-03-01 13:38 次阅读

今天的题目是两数相加。

2.Add Two Numbers

You are given two non-empty linked lists representing two non-negative integers. 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.

You may assume the two numbers do not contain any leading zero, except the number 0 itself.

Example:

Input: (2 -> 4 -> 3) + (5 -> 6 -> 4)

Output: 7 -> 0 -> 8

Explanation: 342 + 465 = 807.

  1. 两数相加

给出两个 非空 的链表用来表示两个非负的整数。其中,它们各自的位数是按照 逆序 的方式存储的,并且它们的每个节点只能存储 一位 数字。

如果,我们将这两个数相加起来,则会返回一个新的链表来表示它们的和。

您可以假设除了数字 0 之外,这两个数都不会以 0 开头。

示例:

输入:(2 -> 4 -> 3) + (5 -> 6 -> 4)

输出:7 -> 0 -> 8

原因:342 + 465 = 807

My answer:

首先创建两个指针指向结果链表的头节点,一个指针dummy始终指在头节点,一个指针now用来指向尾结点(新值插入的位置)。然后设置一个进位标志carry初始化为0。x来代表l1的数值,y代表l2数值,任意一个链表的结束时其对应数值设为0,直到两个链表均结束循环停止。然后在循环内,获得当前位的值sum = x+y+carry和进位carry = sum//10,并将新值sum%10接在now指针后面。最后循环结束时,判断是否依然有进位,如果有进位则在结果链表后新增值为1的结点即可。最后返回dummy.next(注意返回时略过头节点)链表。

Runtime: 40 ms, faster than 99.89% of Python online submissions for Add Two Numbers.

     Memory Usage: 11.9 MB, less than 31.51% of Python online submissions for Add Two Numbers.
# Definition for singly-linked list.
# class ListNode(object):
#     def __init__(self, x):
#         self.val = x
#         self.next = None


class Solution(object):
    def addTwoNumbers(self, l1, l2):
        """
        :type l1: ListNode
        :type l2: ListNode
        :rtype: ListNode
        """
        now = dummy = ListNode(0) #new node 
        carry = 0
        while(l1 or l2):
            x = l1.val if l1 is not None else 0
            y = l2.val if l2 is not None else 0
            sum = x+y+carry
            carry = sum//10
            now.next = ListNode(sum%10)
            now = now.next
            if(l1): l1 = l1.next
            if(l2): l2 = l2.next
        if(carry):
            now.next = ListNode(1)
        return dummy.next
声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉
  • 节点
    +关注

    关注

    0

    文章

    217

    浏览量

    24391
  • now
    now
    +关注

    关注

    0

    文章

    2

    浏览量

    6701
  • dummy
    +关注

    关注

    0

    文章

    6

    浏览量

    5718
收藏 人收藏

    评论

    相关推荐

    谁有extract numbers 子vi

    谁有extract numbers 子vi
    发表于 10-23 11:15

    VRF如何添加十六进制数据?

    with the IO/"To String" object with transaction Write/Text/HexFormat.If you want to add two numbers
    发表于 09-25 15:46

    ADD8504/ADD8505/ADD8506,pdf da

    The ADD8504, ADD8505, and ADD8506 are 4-, 5-, and 6-channel LCD gamma reference buffers designed
    发表于 09-02 16:16 15次下载

    CD54AC283,CD74AC283,CD54ACT283

    technology. These devices add two 4-bit binary numbers and generate a carry-out bit if the sum exceeds 15. Becau
    发表于 08-09 18:14 10次下载

    CD54HC283,CD74HC283,CD54HCT283

    The ’HC283 and ’HCT283 binary full adders add two 4-bit binary numbers and generate a carry-out bit
    发表于 08-09 18:20 26次下载

    Add-On Circuit Preconditions B

    Add-On Cir
    发表于 04-30 10:55 1477次阅读
    <b class='flag-5'>Add</b>-On Circuit Preconditions B

    Add Thermal Monitoring to Redu

    Add Thermal Monitoring to Reduce Data Center Energy Consumption Abstract: Precise and adaptable
    发表于 05-29 11:01 765次阅读
    <b class='flag-5'>Add</b> Thermal Monitoring to Redu

    Add a Discrete Jack-Sensing Ci

    Add a Discrete Jack-Sensing Circuit to the MAX13330/MAX13331 Automotive Headphone Amplifier
    发表于 10-03 08:46 1769次阅读
    <b class='flag-5'>Add</b> a Discrete Jack-Sensing Ci

    什么是ADM (Add/Drop Multiplexer)

    什么是ADM (Add/Drop Multiplexer)  英文缩写: ADM (Add/Drop Multiplexer) 中文译名: 分插复用器 分  类: 网络与交换
    发表于 02-22 10:10 2631次阅读

    Ethernet_NanoBoard_Add-On

    Ethernet NanoBoard Add-On,好东西,喜欢的朋友可以下载来学习。
    发表于 02-22 14:33 0次下载

    Camera_add_shuttersound_setting_

    Camera_add_shuttersound_setting_item
    发表于 05-16 11:05 10次下载

    3.1.2 c_add文件汇总

    3.1.2 c_add文件汇总
    发表于 04-10 10:00 6次下载

    什么是ADD计划,ADD又有哪些应用?

    v应用的被称作是区块链 3.0 的 EOS 底层平台,EOS 是计划支持百万级别高 TPS的新一代主链,但其本质是通过去信任实现在非信环境下的有效交易或是价值流通,所谓价值流通即是通过 ADD 数字
    发表于 08-27 14:00 4086次阅读
    什么是<b class='flag-5'>ADD</b>计划,<b class='flag-5'>ADD</b>又有哪些应用?

    单片机基础之ADD与ADDC的区别详解

    单片机基础之ADD与ADDC的区别详解ADD 两数相加,不加进位位。ADDC 两数相加,加进位位。进位当时为1就加1,进位为0就加0。一般在多字节数相加时,低字节相加用ADD ,高字节相加就用
    发表于 12-17 18:40 11次下载
    单片机基础之<b class='flag-5'>ADD</b>与ADDC的区别详解

    numbers.vim显示文本行数的Vim插件

    ./oschina_soft/numbers.vim.zip
    发表于 05-25 10:03 0次下载
    <b class='flag-5'>numbers</b>.vim显示文本行数的Vim插件