LeetCode---------Add Two Numbers 解法
阿新 • • 發佈:2017-05-19
eve n-n pty lead http 順序 number sum represent
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
題目如上述所示。
大概翻譯:
給出兩個非空的鏈表代表兩個非負的整數。數字以相反的順序存儲,每個節點包含一個數字,將兩個數相加並把結果作為一個鏈表返回。
你可以假設兩個數除了本身是0以外都沒有前導0。
本題最關鍵的地方在於解決進位問題。
在網上查詢了一些解法,包括借鑒了這篇:http://blog.csdn.net/ljiabin/article/details/40476399
其中對於進位問題的解決在一開始便引入一個節點以便最後有進位時使用個人覺得有些不妥,並且使代碼不太容易懂。
下面給出我對於此問題的解法:
【Java代碼】
/** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { val = x; } * } */ public class Solution { public ListNode addTwoNumbers(ListNode l1, ListNode l2) { //如果給出就為空,則直接返回另外一個鏈表 if(l1 == null) return l2; if(l2 == null) return l1; int flag = 0;//存放進位信息,但是並不是處理最後的進位標誌 //構造返回結果的第一個節點 ListNode result = new ListNode((l1.val + l2.val) % 10); ListNode p = result; flag = (l1.val + l2.val) / 10; l1 = l1.next; l2 = l2.next; while(l1!=null || l2!=null){ int l1Num = (l1==null)?0:l1.val;//如果l1鏈表為空,則視值為0 int l2Num = (l2==null)?0:l2.val;//如果l2鏈表為空,則視值為0 p.next = new ListNode((l1Num + l2Num + flag) % 10); p = p.next; flag = (l1Num + l2Num + flag) / 10; if(l1 != null){ l1 = l1.next; } if(l2 != null){ l2 = l2.next; } } //處理最後的進位問題 if(flag != 0){ p.next = new ListNode(flag); p = p.next; } return result; } }
如果有任何問題,歡迎跟我聯系:[email protected]
我的github地址:github.com/WXRain
LeetCode---------Add Two Numbers 解法