演算法思路:從低位開始相加,然後把所得個位數儲存在新的鍊錶中,並用count來儲存進製。
struct listnode };
//使用引數列表初始化結構體
listnode* p =
newlistnode(-
1);//一般宣告結構體
listnode p =
struct listnode
;void
createlist
(listnode* phead)
/**
* definition for singly-linked list.
* struct listnode
* };
*/class
solution
while
(l1!=
null
)while
(l2!=
null)if
(count ==
1) w-
>next =
newlistnode(1
);return l3-
>next;}}
;
LeetCode 兩數相加
題目來自leetcode 注意幾點 鍊錶對應結點相加時增加前乙個結點的進製,並儲存下乙個結點的進製 兩個鍊錶長度不一致時,要處理較長鍊錶剩餘的高位和進製計算的值 如果最高位計算時還產生進製,則還需要新增乙個額外結點。definition for singly linked list.struct l...
leetcode 兩數相加
給定兩個非空鍊錶來表示兩個非負整數。位數按照逆序方式儲存,它們的每個節點只儲存單個數字。將兩數相加返回乙個新的鍊錶。你可以假設除了數字 0 之外,這兩個數字都不會以零開頭.示例 輸入 2 4 3 5 6 4 輸出 7 0 8 原因 342 465 807 definition for singly ...
leetcode 兩數相加
給定兩個非空鍊錶來表示兩個非負整數。位數按照逆序方式儲存,它們的每個節點只儲存單個數字。將兩數相加返回乙個新的鍊錶。你可以假設除了數字 0 之外,這兩個數字都不會以零開頭。示例 輸入 2 4 3 5 6 4 輸出 7 0 8原因 342 465 807 definition for singly l...