zoukankan      html  css  js  c++  java
  • 445. Add Two Numbers II 两个数字相加2

    You are given two non-empty linked lists representing two non-negative integers. The most significant digit comes first 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.

    Follow up:
    What if you cannot modify the input lists? In other words, reversing the lists is not allowed.

    Example:

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


    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    # Definition for singly-linked list.
    # class ListNode:
    #     def __init__(self, x):
    #         self.val = x
    #         self.next = None
     
    class Solution:
        def addTwoNumbers(self, l1, l2):
            """
            :type l1: ListNode
            :type l2: ListNode
            :rtype: ListNode
            """
            def list2arr(root):
                res = []
                while root:
                    res.append(root.val)
                    root = root.next
                return res
     
            arr1, arr2 = list2arr(l1), list2arr(l2)
            index1, index2 = len(arr1) - 1, len(arr2) - 1
            carry = 0
            root = None
            while index1 >= 0 or index2 >= 0 or carry:
                v1, v2 = 0, 0
                if index1 >= 0:
                    v1 = arr1[index1]
                    index1 -= 1
                if index2 >= 0:
                    v2 = arr2[index2]
                    index2 -= 1
     
                val = (v1 + v2 + carry)
                carry = 1 if val >= 10 else 0
     
                newNode = ListNode(val % 10)
                newNode.next = root
                root = newNode
     
            return root







  • 相关阅读:
    javascript 时间与时间戳的转换
    javascript 判断对象的内置类型
    javascript 动态脚本添加
    javascript select标签的操作
    javascript canvas画订单
    css 移动端图片等比显示处理
    FastDFS分布式文件系统
    欧拉回路--模板
    tarjan求双联通分量--POJ 1523 +P2860 [USACO06JAN]Redundant Paths G
    tarjan求割点和割边
  • 原文地址:https://www.cnblogs.com/xiejunzhao/p/8445792.html
Copyright © 2011-2022 走看看