-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathaddTwoNumberAsLinkedListGiven.java
90 lines (81 loc) · 2.23 KB
/
addTwoNumberAsLinkedListGiven.java
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/**
Add Two Numbers as Lists
Asked in:
Amazon
Qualcomm
Microsoft
Facebook
You are given two linked lists representing two non-negative numbers. 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.
Input: (2 -> 4 -> 3) + (5 -> 6 -> 4)
Output: 7 -> 0 -> 8
342 + 465 = 807
Make sure there are no trailing zeros in the output list
So, 7 -> 0 -> 8 -> 0 is not a valid response even though the value is still 807.
* Definition for singly-linked list.
* class ListNode {
* public int val;
* public ListNode next;
* ListNode(int x) { val = x; next = null; }
* }
*/
public class Solution {
public ListNode addTwoNumbers(ListNode nodea, ListNode nodeb) {
if (nodea == null)
return nodeb;
if (nodeb == null)
return nodea;
ListNode a = nodea;
ListNode b = nodeb;
ListNode pa = null;
ListNode pb = null;
int check = 1;
int carry = 0, sum;
while (a!=null && b!=null) {
sum = 0;
sum +=carry;
sum += a.val;
sum += b.val;
carry = sum/10;
sum %= 10;
a.val = sum;
b.val = sum;
pa = a;
pb = b;
a = a.next;
b = b.next;
}
while (a!=null) {
sum = 0;
sum += carry;
sum += a.val;
carry = sum/10;
sum %= 10;
a.val = sum;
pa = a;
a = a.next;
check = 1;
}
while (b!=null) {
sum = 0;
sum += carry;
sum += b.val;
carry = sum/10;
sum %= 10;
b.val = sum;
pb = b;
b = b.next;
check = 2;
}
if (carry != 0 && check == 1) {
pa.next = new ListNode(carry);
return nodea;
} else if (carry!=0 && check == 2) {
pb.next = new ListNode(carry);
return nodeb;
}
if (check == 1)
return nodea;
else
return nodeb;
}
}