This repository has been archived by the owner on May 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Intzilla.java
423 lines (394 loc) · 13.2 KB
/
Intzilla.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
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
public class Intzilla {
static final Intzilla MINUS_ONE = new Intzilla("-1");
static final Intzilla NEGATIVE_ONE = new Intzilla("-1");
static final Intzilla ONE = new Intzilla("1");
static final Intzilla PLUS_ONE = new Intzilla("+1");
static final Intzilla POSTIVE_ONE = new Intzilla("+1");
static final Intzilla ZERO = new Intzilla("0");
private String magnitude;
private char sign;
public Intzilla(){
magnitude = "0";
sign = '+';
}
public Intzilla(Intzilla si){
magnitude = si.magnitude;
sign = si.sign;
}
public Intzilla(String si){
if(si.charAt(0) == '+' || si.charAt(0) == '-'){
sign = si.charAt(0);
magnitude = si.substring(1);
}
else{
sign = '+';
magnitude = si;
}
}
@Override
public String toString(){
if(sign == '-'){
if(magnitude.equals("0")){
return magnitude;
}
else{
return new String(sign + magnitude);
}
}
else{
return new String(magnitude);
}
}
private String simpleSum(Intzilla n){
boolean carry = false;
String answer = "";
int i2 = n.magnitude.length() - 1 ;
for(int i = this.magnitude.length() - 1; i >= 0 || i2 >= 0 ; i--){
int temp;
try{
temp = Character.getNumericValue(this.magnitude.charAt(i)) +
Character.getNumericValue(n.magnitude.charAt(i2));
}
catch (Exception e){
try{
temp = Character.getNumericValue(this.magnitude.charAt(i));
}
catch (Exception e2){
temp = Character.getNumericValue(n.magnitude.charAt(i2));
}
}
if (carry) temp += 1;
if(temp > 9){
answer = (temp - 10) + answer;
carry = true;
}
else{
answer = temp + answer ;
carry = false;
}
i2 --;
}
if (carry) answer = '1' + answer;
int firstNonZero = 0;
boolean allZeros = true;
for(int i = 0; i < answer.length(); i ++){
if(answer.charAt(i) != '0'){
firstNonZero = i;
allZeros = false;
break;
}
}
if(allZeros) answer = "0";
return answer.substring(firstNonZero);
}
private String simpleDifference(Intzilla n){
boolean borrow = false;
String answer = "";
int i2 = n.magnitude.length() - 1 ;
for(int i = this.magnitude.length() - 1; i >= 0 || i2 >= 0 ; i--){
int temp;
try{
temp = Character.getNumericValue(this.magnitude.charAt(i)) -
Character.getNumericValue(n.magnitude.charAt(i2));
}
catch (Exception e){
try{
temp = Character.getNumericValue(this.magnitude.charAt(i));
}
catch (Exception e2){
temp = Character.getNumericValue(n.magnitude.charAt(i2));
}
}
if (borrow) temp -= 1;
if(temp < 0){
answer = (temp + 10) + answer;
borrow = true;
}
else{
answer = temp + answer ;
borrow = false;
}
i2 --;
}
int firstNonZero = 0;
boolean allZeros = true;
for(int i = 0; i < answer.length(); i ++){
if(answer.charAt(i) != '0'){
firstNonZero = i;
allZeros = false;
break;
}
}
if(allZeros) answer = "0";
return answer.substring(firstNonZero);
}
public boolean isEqualTo(Intzilla n){
if(this.sign != n.sign){
return false;
}
else{
return this.isEqualtoInMagnitude(n);
}
}
private boolean isEqualtoInMagnitude(Intzilla n){
if(this.magnitude.length() != n.magnitude.length()){
return false;
}
else{
for(int i = 0; i < this.magnitude.length(); i ++){
if(this.magnitude.charAt(i) != n.magnitude.charAt(i)){
return false;
}
}
return true;
}
}
public boolean isGreaterThan(Intzilla n){
if(this.isEqualTo(n)) return false;
else if(this.sign == '+' && n.sign == '-') return true;
else if(this.sign == '-' && n.sign == '+') return false;
else{
if(this.sign == '+'){
return this.isGreaterThanInMagnitude(n);
}
else{
return !this.isGreaterThanInMagnitude(n);
}
}
}
private boolean isGreaterThanInMagnitude(Intzilla n){
if(this.magnitude.length() > n.magnitude.length()) return true;
if(this.magnitude.length() < n.magnitude.length()) return false;
else{
for(int i = 0; i <this.magnitude.length(); i ++){
if(Character.getNumericValue(this.magnitude.charAt(i)) >
Character.getNumericValue(n.magnitude.charAt(i))){
return true;
}
else if(Character.getNumericValue(this.magnitude.charAt(i)) <
Character.getNumericValue(n.magnitude.charAt(i))){
return false;
}
else{
//continue the loop
}
}
return false;
}
}
public boolean isLessThan(Intzilla n){
if(this.isGreaterThan(n)) return false;
else if(this.isEqualTo(n)) return false;
else return true;
}
private boolean isLessThanInMagnitude(Intzilla n){
if(this.isGreaterThanInMagnitude(n)) return false;
else if(this.isEqualtoInMagnitude(n)) return false;
else return true;
}
public Intzilla sum(Intzilla n){
if(this.sign == '-' && n.sign == '+'){
if(n.isGreaterThanInMagnitude(this)){
String s = n.simpleDifference(this);
return new Intzilla(s);
}
else if(n.isEqualTo(this)){
return new Intzilla();
}
else{
String s = this.simpleDifference(n);
return new Intzilla('-' + s);
}
}
else if(this.sign == '+' && n.sign == '-'){
if(this.isGreaterThanInMagnitude(n)){
String s = this.simpleDifference(n);
return new Intzilla(s);
}
else if(n.isEqualTo(this)){
return new Intzilla();
}
else{
String s = n.simpleDifference(this);
return new Intzilla('-' + s);
}
}
else if(this.sign == '-' && n.sign == '-'){
String s = this.simpleSum(n);
return new Intzilla('-' + s);
}
else{
String s = this.simpleSum(n);
return new Intzilla(s);
}
}
public Intzilla difference(Intzilla n){
if(this.sign == '+' && n.sign == '-'){
String s = this.simpleSum(n);
return new Intzilla(s);
}
else if(this.sign == '-' && n.sign == '+'){
String s = this.simpleSum(n);
return new Intzilla('-' + s);
}
else if(this.sign == '-' && n.sign == '-'){
if(n.isGreaterThanInMagnitude(this)){
String s = n.simpleDifference(this);
return new Intzilla(s);
}
else if(n.isEqualTo(this)){
return new Intzilla();
}
else{
String s = this.simpleDifference(n);
return new Intzilla('-' + s);
}
}
else{
if(this.isGreaterThanInMagnitude(n)){
String s = this.simpleDifference(n);
return new Intzilla(s);
}
else if(n.isEqualTo(this)){
return new Intzilla();
}
else{
String s = n.simpleDifference(this);
return new Intzilla('-' + s);
}
}
}
public Intzilla absoluteVaule(){
return new Intzilla(this.magnitude);
}
private String simpleProduct(Intzilla n){
Intzilla total = new Intzilla("0");
int zeros = -1;
for(int i = n.magnitude.length() - 1; i >= 0; i --){
int carry = 0;
String rowAnswer = "";
for(int i2 = this.magnitude.length() - 1; i2 >= 0; i2 --){
int temp = Character.getNumericValue(n.magnitude.charAt(i)) *
Character.getNumericValue(this.magnitude.charAt(i2)) + carry;
if (temp > 9){
carry = temp/10;
rowAnswer = (temp % 10) + rowAnswer;
}
else{
carry = 0;
rowAnswer = temp + rowAnswer;
}
}
zeros += 1;
rowAnswer = carry + rowAnswer;
for(int i3 = 0; i3 < zeros; i3 ++){
rowAnswer = rowAnswer + '0';
}
Intzilla z = new Intzilla(rowAnswer);
total = new Intzilla (total.simpleSum(z));
}
int firstNonZero = 0;
boolean allZeros = true;
for(int i = 0; i < total.magnitude.length(); i ++){
if(total.magnitude.charAt(i) != '0'){
firstNonZero = i;
allZeros = false;
break;
}
}
if(allZeros) total.magnitude = "0";
return total.magnitude.substring(firstNonZero);
}
public Intzilla product(Intzilla n){
if(this.sign == '+' && n.sign == '-'){
return new Intzilla('-' + this.simpleProduct(n));
}
else if(this.sign == '-' && n.sign == '+'){
return new Intzilla('-' + this.simpleProduct(n));
}
else if(this.sign == '-' && n.sign == '-'){
return new Intzilla(this.simpleProduct(n));
}
else{
return new Intzilla(this.simpleProduct(n));
}
}
private Intzilla simpleQuotient(Intzilla n){
Intzilla thisPos = this.absoluteVaule();
Intzilla nPos = n.absoluteVaule();
Intzilla results = new Intzilla("1");
Intzilla intermediate = new Intzilla(nPos);
if(intermediate.isGreaterThanInMagnitude(thisPos)){
return new Intzilla();
}
Intzilla temp = new Intzilla(intermediate.magnitude + '0');
while(temp.isLessThanInMagnitude(thisPos)){
results.magnitude += '0';
intermediate.magnitude += '0';
temp = new Intzilla(intermediate.magnitude + '0');
}
Intzilla diffC = new Intzilla(thisPos.simpleDifference(intermediate));
while(diffC.isGreaterThanInMagnitude(intermediate) || diffC.isEqualtoInMagnitude(intermediate)){
diffC = diffC.difference(intermediate);
int cAdder = Character.getNumericValue(results.magnitude.charAt(0));
results.magnitude = results.magnitude.substring(1);
results.magnitude = (cAdder + 1) + results.magnitude;
}
if(diffC.isGreaterThanInMagnitude(new Intzilla("2"))){
return results.sum(diffC.simpleQuotient(nPos));
}
else{
return results;
}
}
public Intzilla quotient(Intzilla n){
if(this.sign == '+' && n.sign == '-'){
Intzilla temp = new Intzilla(this.simpleQuotient(n));
temp.sign = '-';
return temp;
}
else if(this.sign == '-' && n.sign == '+'){
Intzilla temp = new Intzilla(this.simpleQuotient(n));
temp.sign = '-';
return temp;
}
else if(this.sign == '-' && n.sign == '-'){
return this.simpleQuotient(n);
}
else{
return this.simpleQuotient(n);
}
}
//sign of remainder is dertermined like the java BigInteger class
public Intzilla remainder(Intzilla n){
Intzilla thisPos = this.absoluteVaule();
Intzilla nPos = n.absoluteVaule();
Intzilla answer = thisPos.difference(thisPos.quotient(nPos).product(nPos));
if(this.sign == '-'){
return new Intzilla('-' + answer.magnitude);
}
else{
return answer;
}
}
public Intzilla toBitString(Intzilla n){
//did not contruct Intzillas in binary, N/A
throw new UnsupportedOperationException();
}
static public Intzilla gcd (Intzilla x, Intzilla y){
Intzilla xPos = x.absoluteVaule();
Intzilla yPos = y.absoluteVaule();
if(xPos.isLessThanInMagnitude(yPos)){
Intzilla temp = xPos;
xPos = yPos;
yPos = temp;
}
Intzilla r = xPos.remainder(yPos);
if(r.isEqualtoInMagnitude(new Intzilla())){
return yPos;
}
else{
return Intzilla.gcd(yPos,r);
}
}
}