Add Two Numbers

2482 단어 number
public class Solution {

    // http://www.cnblogs.com/springfor/p/3864493.html

    public ListNode addTwoNumbers(ListNode l1, ListNode l2) {

        ListNode h = new ListNode(-1);

        ListNode l3 = h;

        if(l1==null || l2==null) return h.next;

        int  carry=0;

        

        while(l1!=null||l2!=null){

            if(l1!=null){

                carry += l1.val;

                l1 = l1.next;

            }

            if(l2!=null){

                carry += l2.val;

                l2 = l2.next;

            }

            l3.next = new ListNode(carry%10);

            carry = carry/10;

            l3 = l3.next;

        }

        if(carry==1) l3.next = new ListNode(1); // do not forget

        return h.next;

    }

}

 나 는 제목 의 뜻 이 매우 모호 하 다 고 생각한다.무엇이"reverse"입 니까?
예 는 아래 와 같다
Input: (2 -> 4 -> 3) + (4 -> 6 -> 4)Output: 6 -> 0 -> 8

좋은 웹페이지 즐겨찾기