国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

2. Add Two Numbers

zhangfaliang / 771人閱讀

摘要:問題過程先算出每個鏈表代表的數字,進行相加然后再把得數轉換為鏈表形式

問題

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

過程

先算出每個鏈表代表的數字,進行相加

然后再把得數轉換為鏈表形式

Code
# 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
        """
        l1_num = self.getval(l1)
        l2_num = self.getval(l2)
        l3_num = l1_num + l2_num
        
        l3 = ListNode(l3_num % 10)
        head = l3
        index = 1
        while l3_num / (10 ** index):
            l = ListNode((l3_num / (10 ** index)) % 10)
            head.next = l
            head = l
            index += 1
            
        return l3
            
        
    def getval(self, l):
        num = 0
        index = 0
        while l:
            num += l.val * (10 ** index)
            l = l.next
            index += 1
        return num

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/40728.html

相關文章

  • 2. Add Two Numbers

    摘要:難度題目給定兩個非空且元素非負的鏈表。鏈表中的數字以逆序排列且每個結點只含一個一位數。使兩個數相加并反回其結果。思路設置頭結點簡化操作。從前向后遍歷相加。 You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse or...

    lastSeries 評論0 收藏0
  • Leetcode 2 Add Two Numbers 兩數相加

    摘要:這題是說給出兩個鏈表每個鏈表代表一個多位整數個位在前比如代表著求這兩個鏈表代表的整數之和同樣以倒序的鏈表表示難度這個題目就是模擬人手算加法的過程需要記錄進位每次把對應位置兩個節點如果一個走到頭了就只算其中一個的值加上進位值 Add Two Numbers You are given two linked lists representing two non-negative num...

    Charlie_Jade 評論0 收藏0
  • leetcode445. Add Two Numbers II

    摘要:題目要求對以鏈表形式的兩個整數進行累加計算。思路一鏈表轉置鏈表形式跟非鏈表形式的最大區別在于我們無法根據下標來訪問對應下標的元素。因此這里通過先將鏈表轉置,再從左往右對每一位求和來進行累加。通過棧可以實現先進后出,即讀取順序的轉置。 題目要求 You are given two non-empty linked lists representing two non-negative i...

    DoINsiSt 評論0 收藏0
  • 每日一則 LeetCode: Add Two Numbers

    摘要:描述中文解釋給定兩個非空的鏈表里面分別包含不等數量的正整數,每一個節點都包含一個正整數,肯能是,但是不會是這種情況。我們需要按照倒序計算他們的和然后再次倒序輸出。 描述 You are given two non-empty linked lists representing two non-negative integers. The digits are stored in rev...

    hightopo 評論0 收藏0
  • leetcode 2 Add Two Numbers

    摘要:我們的目的是求出兩個數字的加和,并以同樣的形式返回。假設每個都不會存在在首位的,除非數字本身就是想法這道題主要要求還是熟悉的操作。這道題由于數字反序,所以實際上從首位開始相加正好符合我們筆算的時候的順序。 題目詳情 You are given two non-empty linked lists representing two non-negative integers. The d...

    Integ 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<