-
Notifications
You must be signed in to change notification settings - Fork 1
/
Add Two Numbers
147 lines (107 loc) · 3.09 KB
/
Add Two Numbers
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
import java.math.*;
class Solution {
public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
String n1 = "";
String n2 = "";
while(l1 != null){
n1 += "" + l1.val;
l1 = l1.next;
}
while(l2 != null){
n2 += "" + l2.val;
l2 = l2.next;
}
String sum = addNumber(reverse(n1), reverse(n2));
ListNode a = null;
return stringToNode(sum, a);
}
public static String reverse(String str){
String reverse = "";
for(int i = str.length() - 1; i >= 0; i--)
{
reverse = reverse + str.charAt(i);
}
return reverse;
}
public static ListNode add(int data)
{
ListNode newnode = new ListNode(data);
newnode.val = data;
newnode.next = null;
return newnode;
}
// Function to convert the string
// to Linked List.
public static ListNode stringToNode(String text, ListNode head)
{
head = add(text.charAt(0)-48);
ListNode curr = head;
// curr pointer points to the current node
// where the insertion should take place
for (int i = 1; i < text.length(); i++)
{
curr.next = add(text.charAt(i) - 48);
curr = curr.next;
}
return head;
}
public static String addNumber (String a, String b){
String sum = "";
String min = "";
int forward = 0;
String max = "";
int result = 0;
int first;
int second;
if(a.length()>b.length()){
max = a;
min = b;
}
else{
max = b;
min = a;
}
for(int i = 0; i<min.length(); i++){
first = min.charAt(min.length()-1-i) - '0';
second = max.charAt(max.length()-1-i) - '0';
result = first + second + forward;
if(result < 10){
sum += "" + result;
forward = 0;
}
else{
sum += "" + (result-10);
forward = 1;
}
}
if(a.length()==b.length()){
if(forward == 1){
sum += "1";
}
return sum;
}
for(int z = max.length()-min.length()-1; z>=0; z--){
result = (max.charAt(z)-'0') + forward;
if(result < 10){
sum += "" + result;
forward = 0;
}
else{
sum += "" + (result - 10);
forward = 1;
}
}
if(forward == 1){
sum += "1";
}
return sum;
}
}