-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMiddle_110_2_Add Two Numbers.MULTILANGUAGE
68 lines (66 loc) · 1.93 KB
/
Middle_110_2_Add Two Numbers.MULTILANGUAGE
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
·½·¨Ò»£º
import java.math.BigInteger;
public class Solution {
public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
BigInteger num1 = BigInteger.ZERO;
BigInteger num2 = BigInteger.ZERO;
BigInteger temp = BigInteger.ONE;
while(l1!=null) {
//num1+=temp*l1.val;
num1=num1.add(temp.multiply(BigInteger.valueOf(l1.val)));
temp=temp.multiply(BigInteger.TEN);
l1=l1.next;
}
temp=BigInteger.ONE;
while(l2!=null) {
num2=num2.add(temp.multiply(BigInteger.valueOf(l2.val)));
temp=temp.multiply(BigInteger.TEN);
l2=l2.next;
}
BigInteger sum = num1.add(num2);
if(sum.compareTo(BigInteger.ZERO)==0)
return new ListNode(0);
else {
ListNode l = new ListNode(sum.mod(BigInteger.TEN).intValue());
ListNode p=l;
while(sum.compareTo(BigInteger.ZERO)!=0) {
sum=sum.divide(BigInteger.TEN);
if(sum.compareTo(BigInteger.ZERO)!=0) {
p.next = new ListNode(sum.mod(BigInteger.TEN).intValue());
p=p.next;
}
}
return l;
}
}
}
·½·¨¶þ£º(from discuss)
struct ListNode* addTwoNumbers(struct ListNode* l1, struct ListNode* l2) {
struct ListNode* result = l1 ? l1 : l2;
struct ListNode* carry = l1 ? l2 : l1;
struct ListNode* node = result;
struct ListNode* tmp;
int c = 0;
int s;
while (l1 || l2) {
s = c;
if (l1) { s += l1->val; l1=l1->next; }
if (l2) { s += l2->val; l2=l2->next; }
c = s > 9 ? 1 : 0;
node->val = c ? s - 10 : s;
if (l1) {
node = node->next = l1;
} else if (l2) {
node = node->next = l2;
} else {
node->next = NULL;
}
}
if (c) {
carry->val = c;
node->next = carry;
node = node->next;
}
node->next = NULL;
return result;
}