[LeetCode]2.Add Two Numbersの2つの数値加算

2666 ワード

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.
Example:
Input: (2 -> 4 -> 3) + (5 -> 6 -> 4) Output: 7 -> 0 -> 8 Explanation: 342 + 465 = 807.
考え方:新しいチェーンテーブルを作成し、入力した2つのチェーンテーブルを最初から後ろに引っ張って、2つずつ加算して、新しいノードを新しいチェーンテーブルの後ろに追加します.2つの入力チェーンテーブルが同時に空になることを避けるために、dummyノードを確立し、2つのノードを加算して生成された新しいノードをdummyノードに順次加算した後、dummyノード自体が変化しないため、新しいチェーンテーブルの最後のノードを指すポインタcurを使用します.はい、2つのチェーンテーブルを加算することができます.この問題がよければ、最低位がチェーンテーブルの先頭にあるので、チェーンテーブルを遍歴しながら、低い順から高い順に直接加算することができます.whileサイクルの条件2つのチェーンテーブルのうち1つが空でない限り、チェーンテーブルが空である可能性があるので、現在のノード値を取るときは、まず判断し、空であれば0を取り、そうでなければノード値を取ります.2つのノード値を加算し、キャリーキャリーも加算します.次にcarryを更新し、sum/10に直接接続し、sum%10を値として新しいノードを確立し、curの後ろに接続し、curを次のノードに移動します.その後、2つのノードを更新し、存在する場合は次の位置を指します.whileサイクルが終了した後、最上位のキャリー問題は最後に特殊に処理し、carryが1の場合、値が1のノードを再構築します.
以上の考え方に基づいてjavaリファレンスコードは以下の通りです.
package IT_haha;

public class Solution {
    public static class ListNode{
        int val;
        ListNode next;
        ListNode(int val){
            this.val=val;
            next=null;
        }
    }
    public static void printListNode(ListNode l){
        if(l==null) return;
        while (l!=null){
            System.out.print(l.val);
            System.out.print(" ");
            l=l.next;
        }
        System.out.println();
        return;
    }
    public static ListNode addTwoNumbers(ListNode l1, ListNode l2) {
        ListNode dummy = new ListNode(-1);
        ListNode cur = dummy;
        int carry = 0;
        while (l1 != null || l2 != null) {
            int d1 = l1 == null ? 0 : l1.val;
            int d2 = l2 == null ? 0 : l2.val;
            int sum = d1 + d2 + carry;
            carry = sum >= 10 ? 1 : 0;
            cur.next = new ListNode(sum % 10);
            cur = cur.next;
            if (l1 != null) l1 = l1.next;
            if (l2 != null) l2 = l2.next;
        }
        if (carry == 1) cur.next = new ListNode(1);
        return dummy.next;
    }

    public static void main(String[] args){
        ListNode l1=new ListNode(2);
        l1.next=new ListNode(4);
        l1.next.next=new ListNode(3);
        ListNode l2=new ListNode(5);
        l2.next=new ListNode(6);
        l2.next.next=new ListNode(4);
        printListNode(l1);
        printListNode(l2);
        printListNode(addTwoNumbers(l1,l2));
    }
}

参照先:http://www.cnblogs.com/grandyang/p/4129891.html