zoukankan      html  css  js  c++  java
  • 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
    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
    # 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
            """
            node1, node2 = l1, l2
            newList = newNode = ListNode(0)
            carry = 0
            while node1 or node2 or carry:
                v1, v2 = 0, 0
                if node1:
                    v1, node1 = node1.val, node1.next
                if node2:
                    v2, node2 = node2.val, node2.next
     
                val = (v1 + v2 + carry)
                carry = 1 if val >= 10 else 0
                newNode.next = ListNode(val % 10)
                newNode = newNode.next
            return newList.next









  • 相关阅读:
    FILE
    基础知识const/typedef/函数指针/回调函数
    strchr
    ftell
    rewind
    fread
    poj 2309BST解题报告
    hdoj 4004The Frog's Games解题报告
    哈理工oj 1353LCM与数对解题报告
    poj 2453An Easy Problem解题报告
  • 原文地址:https://www.cnblogs.com/xiejunzhao/p/8445787.html
Copyright © 2011-2022 走看看