栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Python

LeetCode 2:两数相加 Add Two Numbers

Python 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

LeetCode 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.

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

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

示例:

输入:(2 -> 4 -> 3) + (5 -> 6 -> 4)
输出:7 -> 0 -> 8
原因:342 + 465 = 807
解题思路:

将两个链表遍历将相同位置节点值累加,其和过十进一,新链表相对位置节点值取其和的个位数值。需要考虑到两个链表长度不同时遍历方式、链表遍历完成时最后一位是否需要进一位。

Java:
class Solution {
    public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
 ListNode head = new ListNode(0);//虚拟头节点
 ListNode cur = head;//指针
 int carry = 0;//进位值
 while (l1 != null || l2 != null) {//两个链表均为空时停止遍历
     int x = (l1 != null) ? l1.val : 0;//x为l1的值,如果节点为空,值为0
     int y = (l2 != null) ? l2.val : 0;//y为l2的值,如果节点为空,值为0
     int sum = carry + x + y;//sum为两节点值之和
     carry = sum / 10;//得进位值(1)
     cur.next = new ListNode(sum % 10);//sum%10 得余数即 个位数的值
     cur = cur.next;//刷新指针
     if (l1 != null) l1 = l1.next;//l1节点不为空继续刷新下一个节点
     if (l2 != null) l2 = l2.next;//l2节点不为空继续刷新下一个节点
 }
 if (carry > 0) {//如果仍然需要进 1 ,则直接新建一个节点
     cur.next = new ListNode(carry);
 }
 return head.next;
    }
}
Python3:
class Solution:
    def addTwoNumbers(self, l1: ListNode, l2: ListNode) -> ListNode:
 head = ListNode(0)
 cur = head
 sum = 0
 while l1 or l2:
     if l1:#l1不为空
  sum += l1.val#累计两节点值的和
  l1 = l1.next#刷新节点
     if l2:
  sum += l2.val#累计两节点值的和
  l2 = l2.next#刷新节点
     cur.next = ListNode(sum % 10)//刷新新链表
     cur = cur.next
     sum = sum // 10
 if sum != 0:
     cur.next = ListNode(sum)
 return head.next

一起学习,欢迎关注:爱写Bug

转载请注明:文章转载自 www.mshxw.com
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号