-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAddTwoNumbers.java
More file actions
53 lines (50 loc) · 1.84 KB
/
AddTwoNumbers.java
File metadata and controls
53 lines (50 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package explore.linked_list;
import base.base_structure.ListNode;
/**
* @author :DengSiYuan
* @date :2019/9/25 22:39
* @desc : 2.两数相加
* 【题目】
* 给出两个 非空 的链表用来表示两个非负的整数。其中,它们各自的位数是按照 逆序 的方式存储的,并且它们的每个节点只能存储 一位 数字。
* 如果,我们将这两个数相加起来,则会返回一个新的链表来表示它们的和。
* 您可以假设除了数字 0 之外,这两个数都不会以 0 开头。
* 【示例】
* 输入:(2 -> 4 -> 3) + (5 -> 6 -> 4)
* 输出:7 -> 0 -> 8
* 原因:342 + 465 = 807
*/
public class AddTwoNumbers {
/**
* 【想法】
* (1)遍历两个链表的节点,获取当前节点的值(0单独考虑),
* (2)求和后算是否发生进位,若进位,则将下一轮的求和初始值设为1
* (3)将本位的和赋值到首节点上
* (4)遍历结束后,进行首位是否进位的判断,若进位,则生成最前节点
* @param l1
* @param l2
* @return
*/
public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
ListNode dummyHead = new ListNode(0);
ListNode p = l1,q = l2,curr = dummyHead;
int carry = 0;
while (p != null || q != null){
int x = (p != null) ? p.val : 0;
int y = (q != null) ? q.val : 0;
int sum = carry + x + y;
carry = sum / 10;
curr.next = new ListNode(sum % 10);
curr = curr.next;
if(p != null){
p = p.next;
}
if (q != null){
q = q.next;
}
}
if (carry > 0){
curr.next = new ListNode(carry);
}
return dummyHead.next;
}
}