LeetCode--Add Two Numbers

本文详细解析了如何使用链表实现两个非负整数的加法运算,通过将链表节点存储的数字反转顺序,逐位相加并处理进位,最终返回结果链表。文章分享了关键代码实现及常见陷阱避免。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

#Add Two Numbers
##题目
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.

##分析
在本题中,基本的思路很简单,就是以最长的那条链为加法链,那么较短的链的高位如果不存在的话那么我们就当其值为0,还有就是要考虑到进位,最高位要进位的时候要申请空间。我遇到的最大的一个坑就是

ListNode *result = new ListNode(0);

本来我在这里只是申请了一个变量,即

ListNode *result;

这时返回的链就会是空的。
猜测是没有申请空间的话地址是不确定的,所以会有这样的情况出现。

##源码

/**
 * 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) {
        ListNode *result = new ListNode(0);
        ListNode *re = result;
        int sum = 0, carry = 0;
        while(l1 != NULL||l2 != NULL) {
        	int num1,num2;
        	if(l1 == NULL) {
        		num1 = 0;
        	} else {
        		num1 = l1->val;
        	}
        	if(l2 == NULL) {
        		num2 = 0;
        	} else {
        		num2 = l2->val;
        	}
        	sum = num1 + num2 + carry;
        	result->next = new ListNode(sum%10);
        	result = result->next;
        	carry = sum/10;
        	if(l1 != NULL) {
        		l1 = l1->next;
        	}
        	if(l2 != NULL) {
        		l2 = l2->next;
        	}
        }
        if(carry != 0){
        	result->next = new ListNode(carry);
 		}
 		return re->next;    
	}
};

更多技术博客https://vilin.club/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值