Python leetcode 2 兩數相加

2021-09-24 13:31:08 字數 1837 閱讀 9604

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

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

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

示例:

輸入:(2-

>4-

>3)

+(5-

>6-

>4)

輸出:7

->0-

>

8原因:342

+465

=807

class

solution

:def

addtwonumbers

(self, l1, l2)

: tmpsum = l1.val + l2.val

l3 = listnode(tmpsum %10)

l3.next

= listnode(tmpsum //10)

tmpl1 = l1.

next

tmpl2 = l2.

next

tmpl3 = l3

while tmpl1 or tmpl2:

if tmpl1 and tmpl2:

sum= tmpl1.val + tmpl2.val

tmpl1 = tmpl1.

next

tmpl2 = tmpl2.

next

elif tmpl1 and

not tmpl2:

sum= tmpl1.val

tmpl1 = tmpl1.

next

elif

not tmpl1 and tmpl2:

sum= tmpl2.val

tmpl2 = tmpl2.

next

sum+= p3.

next

.val

tmpl3.

next

.val =

sum%

10 tmpl3.

next

.next

= listnode(

sum//10)

tmpl3 = tmpl3.

next

if tmpl3.

next

.val ==0:

tmpl3.

next

=none

return l3

該方法邏輯比較簡單,就是模擬加法進製的過程。

class

solution

:def

addtwonumbers

(self, l1: listnode, l2: listnode)

-> listnode:

return

[int

(x)for x in

str(self.lntonum(l1)

+self.lntonum(l2))[

::-1

]]deflntonum

(self,ln)

:

i =0 num =

0while

isinstance

(ln,listnode)

: num += ln.val *

10** i

ln = ln.

next

i+=1return num

這個方法比較取巧,直接取鍊錶拼成兩個整數,再把相加後的結果轉回列表。

2 兩數相加 Python LeetCode

兩數相加 給定兩個非空鍊錶來代表兩個非負整數,位數按照逆序方式儲存,它們的每個節點只儲存單個數字。將這兩數相加會返回乙個新的鍊錶。你可以假設除了數字 0 之外,這兩個數字都不會以零開頭。示例 輸入 2 4 3 5 6 4 輸出 7 0 8 原因 342 465 807 解法 把鍊錶l1和l2中的數字...

python leetcode 最大回文數

直接暴力求解時間超出,選取manacher演算法 class solution def longestpalindrome self,s t join s 前後插入 是為了防止越界,不需要進行邊界判斷 n len t p 0 n 每一處的回文半徑 c r 0 r為當前訪問到的最右邊的值,c為此時對稱...

python LeetCode 奇偶鍊錶

給定乙個單鏈表,把所有的奇數節點和偶數節點分別排在一起。請注意,這裡的奇數節點和偶數節點指的是節點編號的奇偶性,而不是節點的值的奇偶性。請嘗試使用原地演算法完成。你的演算法的空間複雜度應為 o 1 時間複雜度應為 o nodes nodes 為節點總數。示例 1 輸入 1 2 3 4 5 null ...