题目描述:
给你两个 非空 的链表,表示两个非负的整数。它们每位数字都是按照 逆序 的方式存储的,并且每个节点只能存储 一位 数字。
请你将两个数相加,并以相同形式返回一个表示和的链表。
你可以假设除了数字 0 之外,这两个数都不会以 0 开头。
示例:
链表使用方法:数据结构类似于python的字典,创建方法主要为
class ListNode{int val;ListNode next;ListNode(){}ListNode(int val) {this.val = val;}ListNode(intn val, ListNode next) {this.val = val; this.next = next;}}
头指针 (head) 和尾指针(tail),以及对 .next 的使用

class Solution {
public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
ListNode head = null, tail = null;
int carry = 0;
while (l1 != null || l2 != null) {
int n1 = l1 != null ? l1.val : 0;
int n2 = l2 != null ? l2.val : 0;
int sum = n1 + n2 + carry;
if (head == null) {
head = tail = new ListNode(sum % 10);
} else {
tail.next = new ListNode(sum % 10);
tail = tail.next;
}
carry = sum / 10;
if (l1 != null) {
l1 = l1.next;
}
if (l2 != null) {
l2 = l2.next;
}
}
if (carry > 0) {
tail.next = new ListNode(carry);
}
return head;
}
}
可创建一个0的节点为头结点,最后返回头结点 head的next,即 head.next 从而省略一个if判断:
class Solution{
public ListNode addTwoNumbers(ListNode l1, ListNode l2){
ListNode head = new ListNode(0);
ListNode tail = next;
int carry = 0;
while(l1 != null || l2 != null){
int n1 = l1 == null ? 0 : l1.val;
int n2 = l2 == null ? 0 : l2.val;
int sum = n1 + n2 + carry;
carry = sum / 10;
sum = sum % 10;
cur.next = new ListNode(sum);
tail = tail.next;
if(n1 != null){
l1 = l1.next;
}
if(n2 != null){
l2 = l2.next;
}
}
if(carry == 1){
tail.next = new ListNode(carry);
}
return head.next;
}
}
int n1 = l1 == null ? 0 : l1.val;
//当链表为null时,设置为零,完整写法应为:
int n1 = (l1 == null ? 0 : l1.val);
//也可写为:
int n1 = (l1 != null ? l1.val : 0);
int n1 = l1 != null ? l1.val : 0;
