91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python怎么實現兩數相加

發布時間:2021-11-20 09:20:54 來源:億速云 閱讀:1007 作者:iii 欄目:編程語言

這篇文章主要講解了“Python怎么實現兩數相加”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Python怎么實現兩數相加”吧!

兩數相加

題目描述

給出兩個 非空 的鏈表用來表示兩個非負的整數。其中,它們各自的位數是按照 逆序 的方式存儲的,并且它們的每個節點只能存儲 一位 數字。

如果,我們將這兩個數相加起來,則會返回一個新的鏈表來表示它們的和。

您可以假設除了數字 0 之外,這兩個數都不會以 0 開頭。

輸入:(2 -> 4 -> 3) + (5 -> 6 -> 4)
輸出:7 -> 0 -> 8
原因:342 + 465 = 807

解題思路

其實這題比較簡單,無非是兩個鏈表之間同層級的數字相加,唯一要注意的就是如果相加之后數字大于10,需要往下一級+1,當前級數是個位的那個數字。基本也是一個循環可以解決的。再注意處理下,如果一個鏈表長度長于另一個鏈表時的邊界處理,其余就沒啥了。

JS版

/**
 * @param {ListNode} l1
 * @param {ListNode} l2
 * @return {ListNode}
 */const addTwoNumbers = (l1, l2) => {
 let l3 = null
 let cache = 0
 let tens = 0
 while (l1 || l2) {
 let total = 0
 if (l1) {
 let l1Head = l1.val
 total += l1Head
 l1 = l1.next }
 if (l2) {
 let l2Head = l2.val
 total += l2Head
 l2 = l2.next }
 total += tens if (total >= 10) {
 total -= 10
 tens = 1
 } else {
 tens = 0
 }
 let node = new ListNode(total)
 if (cache) {
 cache.next = node
 cache = node } else {
 l3 = node
 cache = l3 }
 }
 if (tens === 1) {
 cache.next = new ListNode(1)
 }
 return l3}

TS版

class ListNode {
 val: number
 next: ListNode | any
 constructor(value: number) {
 this.val = value this.next = null
 }}
 /**
 * @param {ListNode} l1
 * @param {ListNode} l2
 * @return {ListNode}
 */const addTwoNumbers = (l1: ListNode, l2: ListNode) => {
 let l3: null | ListNode = null
 let cache: ListNode | null = null
 let tens: number = 0
 while (l1 || l2) {
 let total: number = 0
 if (l1) {
 let l1Head = l1.val
 total += l1Head
 l1 = l1.next }
 if (l2) {
 let l2Head = l2.val
 total += l2Head
 l2 = l2.next }
 total += tens if (total >= 10) {
 total -= 10
 tens = 1
 } else {
 tens = 0
 }
 let node = new ListNode(total)
 if (cache) {
 cache.next = node
 cache = node } else {
 l3 = node
 cache = l3 }
 }
 if (tens === 1) {
 cache.next = new ListNode(1)
 }
 return l3}

PY版

# Definition for singly-linked list.# class ListNode:# def __init__(self, x):# self.val = x# self.next = Noneclass Solution:
 def addTwoNumbers(self, l1: ListNode, l2: ListNode) -> ListNode:
 """
 :type l1: ListNode
 :type l2: ListNode
 :rtype: ListNode
 """
 l3 = None
 cache = 0
 tens = 0
 while l1 or l2:
 total = 0
 if l1:
 l1Head = l1.val
 total = total + l1Head
 l1 = l1.next
 if l2:
 l1Head = l2.val
 total = total + l1Head
 l2 = l2.next
 total = total + tens if total >= 10:
 total = total - 10
 tens = 1
 else:
 tens = 0
 node = ListNode(total)
 if cache:
 cache.next = node
 cache = node else:
 l3 = node
 cache = l3 if tens == 1:
 cache.next = ListNode(1)
 return l3

感謝各位的閱讀,以上就是“Python怎么實現兩數相加”的內容了,經過本文的學習后,相信大家對Python怎么實現兩數相加這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

诏安县| 监利县| 襄汾县| 米林县| 抚远县| 恩施市| 阿瓦提县| 长沙市| 阿巴嘎旗| 铜梁县| 紫阳县| 蒙阴县| 梅州市| 泾阳县| 原平市| 泗阳县| 武定县| 巴里| 梅州市| 岳普湖县| 安溪县| 昌邑市| 巴塘县| 闻喜县| 北京市| 井研县| 富阳市| 克山县| 西乡县| 铅山县| 绥中县| 陇西县| 南康市| 遵化市| 临潭县| 新蔡县| 临夏县| 樟树市| 永平县| 门头沟区| 新郑市|