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.
Input: (2 -> 4 -> 3) + (5 -> 6 -> 4)
Output: 7 -> 0 -> 8
題目分析:給出兩個非負整數(shù),以鏈表形式倒序給出弦撩。求他們的和,然后再倒序用鏈表表示出來锈锤。最基本的思路是一次遍歷兩個鏈表,然后得到兩個整數(shù)值岭参,相加之后再倒序表示嘱巾,這種解法的復(fù)雜度是O(n)顷歌,但是較為麻煩。由于本題已經(jīng)給出了數(shù)字的鏈表倒序表示方法邻储,因此我們可以將當(dāng)前節(jié)點l1與l2的值進行相加赋咽,此時得出的值一定是對應(yīng)倒過來的相應(yīng)位置的值(不考慮前一節(jié)點有進位和后一節(jié)點進位的情況),這樣我們就不用遍歷兩次鏈表了吨娜,依次遍歷兩個鏈表脓匿,相加得出他們對應(yīng)位置上的和,終止條件就是兩個鏈表都為空且沒有產(chǎn)生進位的情況宦赠。然后我們可以用依次遍歷陪毡,設(shè)置一個整數(shù)表示進位數(shù)字米母,初始為0,有進位則為1.一次遍歷即可毡琉。
public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
ListNode result = new ListNode(0);
int add = 0;
ListNode node=result;
while (l1 != null || l2 != null) {
int i1 = 0;
int i2 = 0;
if (l1 != null) {
i1 = l1.val;
l1 = l1.next;
}
if (l2 != null) {
i2 = l2.val;
l2 = l2.next;
}
node.val=(i1+i2+add)%10;
add=(i1+i2+add)/10;
if(l1!=null||l2!=null||add!=0){
node.next=new ListNode(add);
}
node=node.next;
}
return result;
}