This repository was archived by the owner on Apr 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHomework 5-2.cpp
434 lines (339 loc) · 12.5 KB
/
Homework 5-2.cpp
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
424
425
426
427
428
429
430
431
432
433
//
// main.cpp
// Hw5-2 (Functed)
// Huge integer addition, subtraction, multiplication and division
//
// Created by Tomy Hsieh on 2017/10/11.
// Copyright © 2017年 Tomy Hsieh. All rights reserved.
//
#include <iostream>
using std::cin;
using std::cout;
using std::endl;
#include <fstream>
using std::istream;
using std::ostream;
using std::ifstream;
using std::ofstream;
using std::ios;
// enable user to input two positive huge integers from user
void inputTwoHugeInts(istream & inFile, int hugeInt1[], int hugeInt2[], int & size1, int & size2);
// perform addition, subtraction, multiplication and division
void perform(ostream & outFile, int hugeInt1[], int hugeInt2[], int hugeInt3[],
int hugeInt4[], int size1, int size2, int size3, int size4);
// output the specified huge integer
void output(ostream & outFile, int hugeInt[], int size);
// returns true if and only if the specified huge integer is zero
bool isZero(int hugeInt[], int size);
// return true if and only if hugeInt1 == hugeInt2
bool equal(int hugeInt1[], int hugeInt2[], int size1, int size2);
// returns true if and only if hugeInt1 < hugeInt2
bool less(int hugeInt1[], int hugeInt2[], int size1, int size2);
// sum = addend + adder
void addition(int addend[], int adder[], int sum[], int addendSize, int adderSize, int & sumSize);
// difference = minuend - subtrahend
void subtraction(int minuend[], int subtrahend[], int difference[],
int minuendSize, int subtrahendSize, int & differenceSize);
// product = multiplicand * multiplier
void multiplication(int multiplicand[], int multiplier[], int product[],
int multiplicandSize, int multiplierSize, int & productSize);
// quotient = dividend / divisor; remainder = dividend % divisor
void division(int dividend[], int divisor[], int quotient[], int remainder[],
int dividendSize, int divisorSize, int & quotientSize, int & remainderSize);
// hugeInt /= 10
void divideBy10(int hugeInt[], int & size);
const int numTestCases = 22; // the number of test cases
const int arraySize = 200;
int main() {
ifstream inFile("Test cases.txt", ios:: in );
// exit program if ofstream could not open file
if (!inFile) {
cout << "File could not be opened" << endl;
exit(1);
}
ofstream outFile("Result.txt", ios::out);
// exit program if ofstream could not open file
if (!outFile) {
cout << "File could not be opened" << endl;
exit(1);
}
for (int i = 0; i < numTestCases; i++) {
int hugeInt1[arraySize] = {};
int hugeInt2[arraySize] = {};
int hugeInt3[arraySize] = {};
int hugeInt4[arraySize] = {};
int size1 = 0;
int size2 = 0;
int size3 = 0;
int size4 = 0;
inputTwoHugeInts(inFile, hugeInt1, hugeInt2, size1, size2);
perform(cout, hugeInt1, hugeInt2, hugeInt3, hugeInt4, size1, size2, size3, size4);
perform(outFile, hugeInt1, hugeInt2, hugeInt3, hugeInt4, size1, size2, size3, size4);
}
inFile.close();
outFile.close();
}
// enable user to input two positive huge integers from user
void inputTwoHugeInts(istream & inFile, int hugeInt1[], int hugeInt2[], int & size1, int & size2) {
char numericString1[arraySize];
char numericString2[arraySize];
inFile >> numericString1 >> numericString2;
size1 = strlen(numericString1);
for (int i = 0; i < size1; ++i)
hugeInt1[i] = numericString1[size1 - i - 1] - '0';
size2 = strlen(numericString2);
for (int i = 0; i < size2; ++i)
hugeInt2[i] = numericString2[size2 - i - 1] - '0';
}
// perform addition, subtraction and multiplication
void perform(ostream & outFile, int hugeInt1[], int hugeInt2[], int hugeInt3[],
int hugeInt4[], int size1, int size2, int size3, int size4) {
output(outFile, hugeInt1, size1);
output(outFile, hugeInt2, size2);
// hugeInt3 = hugeInt1 + hugeInt2
addition(hugeInt1, hugeInt2, hugeInt3, size1, size2, size3);
output(outFile, hugeInt3, size3);
// if hugeInt1 < hugeInt2
if (less(hugeInt1, hugeInt2, size1, size2)) {
outFile << '-';
// hugeInt3 = hugeInt2 - hugeInt1
subtraction(hugeInt2, hugeInt1, hugeInt3, size2, size1, size3);
output(outFile, hugeInt3, size3); // outputs n2 - n1
} else {
// hugeInt3 = hugeInt1 - hugeInt2
subtraction(hugeInt1, hugeInt2, hugeInt3, size1, size2, size3);
output(outFile, hugeInt3, size3); // outputs n1 - n2
}
// hugeInt3 = hugeInt1 * hugeInt2
multiplication(hugeInt1, hugeInt2, hugeInt3, size1, size2, size3);
output(outFile, hugeInt3, size3); // outputs n1 * n2
if (isZero(hugeInt2, size2)) {
outFile << "DivideByZero!\n";
outFile << "DivideByZero!\n";
} else {
division(hugeInt1, hugeInt2, hugeInt3, hugeInt4, size1, size2, size3, size4);
output(outFile, hugeInt3, size3); // outputs n1 / n2
output(outFile, hugeInt4, size4); // outputs n1 % n2
}
outFile << endl;
}
// output the specified huge integer
void output(ostream & outFile, int hugeInt[], int size) {
if (isZero(hugeInt, size))
outFile << 0;
else
for (int i = size - 1; i >= 0; i--)
outFile << hugeInt[i];
outFile << endl;
}
// returns true if and only if the specified huge integer is zero
bool isZero(int hugeInt[], int size) {
for (int i = 0; i < size; i++)
if (hugeInt[i] != 0)
return false;
return true;
}
// return true if and only if hugeInt1 == hugeInt2
bool equal(int hugeInt1[], int hugeInt2[], int size1, int size2) {
if (size1 != size2) {
return false;
}
else if (size1 == size2) {
for (int i = 0; i < size1; i++) {
if (hugeInt1[i] != hugeInt2[i]) {
return false;
}
}
}
return true;
}
// returns true if and only if hugeInt1 < hugeInt2
bool less(int hugeInt1[], int hugeInt2[], int size1, int size2) {
if (size1 < size2) {
return true;
} else if (size1 > size2) {
return false;
} else if (size1 == size2) {
for (int i = size1 - 1; i >= 0; i--) {
if (hugeInt1[i] < hugeInt2[i]) {
return true;
} else if (hugeInt1[i] > hugeInt2[i]) {
return false;
}
}
}
return false;
}
// sum = addend + adder
void addition(int addend[], int adder[], int sum[],
int addendSize, int adderSize, int & sumSize) {
sumSize = (addendSize >= adderSize) ? addendSize + 1 : adderSize + 1;
for (int i = 0; i < addendSize; i++) {
sum[i] = addend[i];
}
for (int i = addendSize; i < sumSize; i++) {
sum[i] = 0;
}
for (int i = 0; i < adderSize; i++) {
sum[i] += adder[i];
}
for (int i = 0; i < sumSize - 1; i++) {
if (sum[i] > 9) {
sum[i] -= 10;
sum[i + 1]++;
}
}
if (sum[sumSize - 1] == 0) {
sumSize--;
}
}
// difference = minuend - subtrahend
void subtraction(int minuend[], int subtrahend[], int difference[],
int minuendSize, int subtrahendSize, int & differenceSize) {
//Presume the maximium Lens of Difference
differenceSize = minuendSize;
//Fill Array with 0
for (int i = 0; i < differenceSize; i++) {
difference[i] = 0;
}
if (minuendSize > subtrahendSize) { //If Minuend has Greater Size
//Calcuate Correspond Digits
for (int i = 0; i < subtrahendSize; i++) {
difference[i] = minuend[i] - subtrahend[i];
}
//Calculate the Rest Digits
for (int i = subtrahendSize; i < minuendSize; i++) {
difference[i] = minuend[i];
}
} else { //If Sizes are same
//Calculate all Digits
for (int i = 0; i < subtrahendSize; i++) {
difference[i] = minuend[i] - subtrahend[i];
}
}
//Deal with Negatives
for (int i = 0; i < differenceSize - 1; i++) {
if (difference[i] < 0) {
difference[i] += 10;
difference[i + 1]--;
}
}
//Recalculate Difference Size
while (difference[differenceSize - 1] == 0) {
differenceSize--;
}
}
// product = multiplicand * multiplier
void multiplication(int multiplicand[], int multiplier[], int product[],
int multiplicandSize, int multiplierSize, int & productSize) {
//Presume the maximium Lens of Product
productSize = multiplicandSize + multiplierSize;
//Fill Array with 0
for (int i = 0; i < productSize; i++) {
product[i] = 0;
}
//Double-Loop Calculate Each Digits
for (int i = 0; i < multiplierSize; i++) {
for (int k = 0; k < multiplicandSize; k++) {
product[i + k] += multiplicand[k] * multiplier[i];
}
}
//Carry-Onnnnnn
for (int i = 0; i < productSize; i++) {
if (product[i] >= 10) {
product[i + 1] += product[i] / 10;
product[i] = product[i] % 10;
}
}
//Recalculate Product Size
while (product[productSize - 1] == 0) {
productSize--;
}
}
// quotient = dividend / divisor; remainder = dividend % divisor
void division(int dividend[], int divisor[], int quotient[], int remainder[],
int dividendSize, int divisorSize, int & quotientSize, int & remainderSize) {
//If Dividend == 0
if (isZero(dividend, dividendSize)) {
quotientSize = 1;
remainderSize = 1;
quotient[0] = 0;
remainder[0] = 0;
return;
}
//Set Default Remainder to Divisor
remainderSize = dividendSize;
for (int i = 0; i < dividendSize; i++) {
remainder[i] = dividend[i];
}
//If Dividend < Divisor
if (less(dividend, divisor, dividendSize, divisorSize)) {
quotientSize = 1;
quotient[0] = 0;
} else {
//Calculate Divisor Shift Unit
int n = dividendSize - divisorSize;
//Create Buffer
int bufferSize = dividendSize;
int * buffer = new int[bufferSize - 1];
for (int i = 0; i < n; i++) {
buffer[i] = 0;
}
for (int i = n; i < bufferSize; i++) {
buffer[i] = divisor[i - n];
}
//Setting Default Quotient Size
quotientSize = dividendSize - divisorSize;
//If Dividend < Buffer
if (less(dividend, buffer, dividendSize, bufferSize)) {
//Shift Buffer if Buffer is Too Big
divideBy10(buffer, bufferSize);
} else {
//Calculate New Quotient Size
quotientSize++;
}
//Set Quotient to Zero
for (int i = 0; i < quotientSize; i++) {
quotient[i] = 0;
}
//Calculate Remainder One Unit at One Time
for (int k = quotientSize - 1; k >= 0; k--) {
//While Buffer <= Remainder
while (less(buffer, remainder, bufferSize, remainderSize) || equal(buffer, remainder, bufferSize, remainderSize)) {
//Calculate Unit Remainder
for (int i = bufferSize - 1; i >= 0; i--) {
remainder[i] = remainder[i] - buffer[i];
}
for (int i = 0; i < remainderSize - 1; i++) {
if (remainder[i] < 0) {
remainder[i] += 10;
remainder[i + 1]--;
}
}
//Calculate New Remainder Size
while (remainder[remainderSize - 1] == 0) {
remainderSize--;
}
//Calculate Unit Quotient
quotient[k]++;
//If Remainder == 0
if (isZero(remainder, remainderSize)) {
return;
}
}
//Shift Buffer for Next Calculation
divideBy10(buffer, bufferSize);
}
}
}
// hugeInt /= 10
void divideBy10(int hugeInt[], int & size) {
if (size == 1)
hugeInt[0] = 0;
else {
for (int i = 1; i < size; i++)
hugeInt[i - 1] = hugeInt[i];
size--;
hugeInt[size] = 0;
}
}