标签:link lis val pre leetcode 返回 public 两数相加 除了
输入:(2 -> 4 -> 3) + (5 -> 6 -> 4)
输出:7 -> 0 -> 8
原因:342 + 465 = 807
/**
* 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* res=new ListNode(-1);
ListNode* cur=res;
int cf=0;
while( l1||l2 ){
int num1=l1?l1->val:0;
int num2=l2?l2->val:0;
int sum=num1+num2+cf;
cf=sum/10;//进位
cur->next=new ListNode(sum%10);
cur=cur->next;
if(l1) l1=l1->next;
if(l2) l2=l2->next;
}
if(cf) cur->next=new ListNode(1);//最高位仍存在进位
return res->next;
}
};
标签:link lis val pre leetcode 返回 public 两数相加 除了
原文地址:https://www.cnblogs.com/zhangfeng406/p/13117955.html