add two numbers(将两个链表相加)

时间:2023-12-23 21:11:19

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.

题目意思看例子。从头往尾相加,超过10就要往后进位。除了下面代码的方法,也可以设置一个flag,表示要不要进位。而下面代码是直接将每次的和留到下一次,让下一次自己判断。效果一样。

这题因为给你的是链表,所以如果想把链表转成整数,然后相加,可能会造成溢出。所以此方法行不通。
仔细观察例子,其实就是从头往尾遍历,相加,当两个节点的和没有超过10,那就直接形成新节点,新节点的值就是这个值。如果相加的和超过了10,这是新节点的值应该就是这个和%10(如6+8=14,新节点的值就是4),此时还需要进位,进位给后一个节点(sum/10)。这里用sum表示两个数的和,同时这个和还要加上前一个的进位(就是前一个和/10,)。

/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
class Solution {
public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
if(l1==null||l2==null) return null;
ListNode res=new ListNode(0);
ListNode p=res;
int carry=0;
while(l1!=null||l2!=null){
int sum=carry;
if(l1!=null){ sum+=l1.val;l1=l1.next;}
if(l2!=null) {sum+=l2.val;l2=l2.next;}
p.next=new ListNode(sum%10);
p=p.next;
carry=sum/10; }
if(carry!=0) p.next=new ListNode(carry);
return res.next;
}
}