Leet Code Medium 2 add two numbers

You are given two linked lists representing two non-negative numbers. 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.

Input: (2 -> 4 -> 3) + (5 -> 6 -> 4)
Output: 7 -> 0 -> 8


【算法思路】

采用合并的思想,计算每一位和进位的和。类似于合并链表吧。


【复杂度】

时间 :O(n) 遍历最长的那个链表

空间:O(1)

PS:  实现中注意维护进位,陷阱的话记住最后还要判一下有没有进位,如果有再生成一位。 
     这道题还是有一些扩展的,比如这个其实是BigInteger的相加,数据结果不一定要用链表,也可以是数组,面试中可能两种都会问而且实现。

然后接下来可以考一些OO设计的东西,比如说如果这是一个类应该怎么实现,也就是把数组或者链表作为成为成员变量,再把这些操作作为成员函数,进一步的问题可能是如何设计constructor,这个问题要对内置类型熟悉,比如int, long的constructor, 类似于BigInteger(int num), BigInteger(int long). 

总体来说问题还是比较简单,但是这种问题不能出错,所以还是要谨慎对待。


【CODE】

/**
 * 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) {
        ListNode list = null;
        
        int tmpVal = 0;
        int tmpCarry = 0;
        int tmpAns = 0;
        
        if( (l1 == null) || (l2 == null) )
        {
            if(l1 != null)
                list = l1;
            else if(l2 != null)
                list = l2;
            return list;
        }
        
        tmpAns = l1.val + l2.val;
        tmpVal = tmpAns % 10;
        tmpCarry = tmpAns / 10;
        
        list = new ListNode(tmpVal);
        
        ListNode list1 = l1.next;
        ListNode list2 = l2.next;
        ListNode listHead = list;
        
        while( (list1 != null) && (list2 != null) )
        {
            tmpAns = list1.val + list2.val + tmpCarry;
            tmpVal = tmpAns % 10 ;
            tmpCarry = tmpAns / 10;
            
            ListNode tmpNode = new ListNode(tmpVal);
            
            list.next = tmpNode;
            list = list.next;
            list1 = list1.next;
            list2 = list2.next;
        }
        
        while(list1 != null)
        {
            tmpAns = list1.val + tmpCarry;
            tmpVal = tmpAns % 10 ;
            tmpCarry = tmpAns / 10;
            
            ListNode tmpNode = new ListNode(tmpVal);
            
            list.next = tmpNode;
            list = list.next;
            list1 = list1.next;
        }
        
        while(list2 != null) 
        {
            tmpAns = list2.val + tmpCarry;
            tmpVal = tmpAns % 10 ;
            tmpCarry = tmpAns / 10;
            
            ListNode tmpNode = new ListNode(tmpVal);
            
            list.next = tmpNode;
            list = list.next;
            list2 = list2.next;
        }
        
        if(tmpCarry != 0)
        {
            ListNode tmpNode = new ListNode(tmpCarry);
            list.next = tmpNode;
        }
        
        return listHead;
    }
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Anyanyamy

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值