Leetcode之Add Two Numbers解法

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    ListNode* addTwoNumbers(ListNode* l1, ListNode* l2) {
        int carry = 0;
        ListNode *l1_temp = l1, *l2_temp = l2, *head ,*head_temp;
        head_temp = head = (ListNode*) malloc(sizeof(ListNode));
        head -> next = NULL;
        while(l1_temp != NULL || l2_temp != NULL){
        // (l1_temp != NULL && l2_temp != NULL) 写法复杂
            head_temp -> next = (ListNode*) malloc(sizeof(ListNode));
            head_temp = head_temp -> next;
            head_temp -> next = NULL;
            int x = (l1_temp == NULL) ? 0 : l1_temp -> val;
            int y = (l2_temp == NULL) ? 0 : l2_temp -> val;
            head_temp -> val = (x + y + carry) % 10;
            carry = (x + y + carry) / 10;
            if(l1_temp != NULL) l1_temp = l1_temp -> next;
            if(l2_temp != NULL) l2_temp = l2_temp -> next;
        }
        // easy to forget
        if(carry){
            head_temp -> next = new ListNode(carry);
        }
        return head -> next;
    }
};

注意最后进位不为0时,还需继续插入节点。
这个写法比较简洁,如用while(l1_temp != NULL && l2_temp != NULL)
的写法,会增加20行左右。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值