-
Notifications
You must be signed in to change notification settings - Fork 1
/
inf_int.cpp
576 lines (485 loc) · 17 KB
/
inf_int.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
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
#include <cstring>
#include <string>
#include "inf_int.h"
inf_int::inf_int(){
/**
* A default constructor (that doesn’t need any parameter)
* will have a simple process to initialize the internal members.
*
* we will initialize the digit as zero,
* additionally putting the null at the end of the digit array
* to indicate the end of the string,
* digits = {48, 0};
*
* and set the length as 1
* and bool sign as true.
*/
this->digits = new char[2]; // Dynamic Allocation
this->digits[0] = '0'; // Set Default Value to 0
this->digits[1] = '\0';
this->length = 1;
this->thesign = true;
}
inf_int::inf_int(int n){
char buf[100];
if(n < 0){
// 음수 처리
this->thesign = false;
n = -n;
}else{
this->thesign = true;
}
int i = 0;
while(n > 0){
// 숫자를 문자열로 변환하는 과정
buf[i] = n % 10 + '0';
n /= 10;
i++;
}
if(i == 0){
// 숫자의 절댓값이 0일 경우
new (this) inf_int();
}else{
buf[i] = '\0';
this->digits = new char[i + 1];
this->length = i;
strcpy(this->digits, buf);
}
}
inf_int::inf_int(const char* str){
//unsigned로 둘 때 positive case에서 역순 삽입 시 에러 발생
if (str[0] == '-'){
// 음수일 때
this->thesign = false;
this->length = strlen(str) - 1; // 음수 정수가 문자열의 형태로 들어온다면 실제 그 길이는 음수부호 제외
this->digits = new char[length + 1];
for (int i = length - 1; i >= 0; i--){
// 계산을 위한 역순 삽입, str[0] 제외
digits[i] = str[length - i];
}
}else{
// 양수일 때
this->thesign = true;
this->length = strlen(str); // 문자열의 형태로 들어온 모든 문자가 숫자임
this->digits = new char[length + 1];
for(int i = length - 1; i >= 0; i--){
// 계산을 위한 역순 삽입, str[0]까지 모두 포함
digits[i] = str[length - i - 1];
}
}
}
inf_int::inf_int(const inf_int& a){
this->digits = new char[a.length + 1];
strcpy(this->digits, a.digits);
this->length = a.length;
this->thesign = a.thesign;
}
inf_int::~inf_int(){
// 메모리 할당 해제
delete digits;
}
inf_int& inf_int::operator=(const inf_int& a){
// 이미 문자열이 있을 경우 제거
delete this->digits;
this->digits = new char[a.length + 1];
strcpy(this->digits, a.digits);
this->length = a.length;
this->thesign = a.thesign;
return *this;
}
bool operator==(const inf_int& a, const inf_int& b){
// we assume 0 is always positive.
if ((strcmp(a.digits, b.digits) == 0) && a.thesign == b.thesign){
// 부호가 같고, 절댓값이 일치해야함
return true;
}
return false;
}
bool operator!=(const inf_int& a, const inf_int& b){
return !operator==(a, b);
}
bool operator>(const inf_int& a, const inf_int& b){
// 두 부호가 다른 경우 a의 부호를 따라감, 양수>음수면 당연한 거고, 음수>양수면 false이므로 음수 반환해도 무방함.
if(a.thesign != b.thesign){
return a.thesign;
}
if(a.thesign){
// a가 양수일 때
if(a.length > b.length) {
// 길이가 길면 무조건 큼
return true;
}else if(a.length < b.length) {
// 길이가 작으면 무조건 작음
return false;
}else{
for(int i = a.length - 1; i >= 0; i--){
// 길이가 같다면 하나하나 비교 시작 (12345면 배열엔 54321이 담겨있는 상태)
if(a.digits[i] > b.digits[i]){
return true;
}else if(a.digits[i] < b.digits[i]){
return false;
}else{
// 같은 자릿수에 숫자까지 동일하다면 패스
continue;
}
}
}
}else{
// a가 음수일 때
if(a.length > b.length){
// 길이가 길면 무조건 작음
return false;
}else if(a.length < b.length){
// 길이가 작으면 무조건 큼
return true;
}else{
for(int i = a.length - 1; i >= 0; i--){
// 길이가 같다면
if(a.digits[i] > b.digits[i]){
return false;
}else if(a.digits[i] < b.digits[i]){
return true;
}else{
continue;
}
}
}
}
// continue만 계속하여 반복문을 이탈해버린 상황, 이는 "같음"을 의미, 즉 이 함수의 목적인 ">"가 아니므로 false
return false;
}
bool operator<(const inf_int& a, const inf_int& b){
if(operator>(a, b) || operator==(a, b)){
return false;
}else{
return true;
}
}
inf_int operator+(const inf_int& a, const inf_int& b){
inf_int c;
if (a.thesign == b.thesign){
// 이항의 부호가 같을 경우 + 연산자로 연산
for (unsigned int i = 0; i < a.length; i++){
c.Add(a.digits[i], i + 1);
}
for (unsigned int i = 0; i < b.length; i++){
c.Add(b.digits[i], i + 1);
}
c.thesign = a.thesign;
return c;
}else{
// 이항의 부호가 다를 경우 - 연산자로 연산
c = b;
c.thesign = a.thesign;
return a - c;
}
}
inf_int operator-(const inf_int& a, const inf_int& b){
inf_int c;
if(a.thesign == b.thesign && !strcmp(a.digits, b.digits)){
// 두 수가 동일한 경우
c.Add(0, 1);
c.thesign = true;
return c;
}
if(a.thesign == b.thesign && a.thesign){
// 이항의 부호가 양수로 같을 경우
if(a > b || a == b){
//a의 절댓값이 b보다 크거나 같을 때
for(unsigned int i = 0; i < a.length; i++){
c.Add(a.digits[i], i + 1);
}
for(unsigned int i = 0; i < b.length; i++){
c.Sub(b.digits[i], i + 1);
}
c.thesign = a.thesign;
}else{
//a의 절댓값이 b보다 작을 때
for(unsigned int i = 0; i < b.length; i++){
c.Add(b.digits[i], i + 1);
}
for(unsigned int i = 0; i < a.length; i++){
c.Sub(a.digits[i], i + 1);
}
c.thesign = !(a.thesign);
}
}else if(a.thesign == b.thesign && !a.thesign){
// 이항의 부호가 음수로 같을 경우
if(a < b || a == b){
//a의 절댓값이 b보다 크거나 같을 때
for(unsigned int i = 0; i < a.length; i++){
c.Add(a.digits[i], i + 1);
}
for(unsigned int i = 0; i < b.length; i++){
c.Sub(b.digits[i], i + 1);
}
c.thesign = a.thesign;
}else{
//a의 절댓값이 b보다 작을 때
for(unsigned int i = 0; i < b.length; i++){
c.Add(b.digits[i], i + 1);
}
for(unsigned int i = 0; i < a.length; i++){
c.Sub(a.digits[i], i + 1);
}
c.thesign = !(a.thesign);
}
}else{
// 이항의 부호가 다를 경우 + 연산
for(unsigned int i = 0; i < a.length; i++){
c.Add(a.digits[i], i + 1);
}
for(unsigned int i = 0; i < b.length; i++){
c.Add(b.digits[i], i + 1);
}
c.thesign = a.thesign;
}
/**
* @brief c 의 접두로 '0000'이 있을 경우 다지워서 리턴함
*/
int _size = c.length;
while(c.digits[_size - 1] == '0'){
_size--;
}
char* _digits = new char[_size + 1];
for(int idx = _size - 1; idx >= 0; idx--){
_digits[idx] = c.digits[idx];
}
_digits[_size] = '\0';
c.digits = new char[_size + 1];
strcpy(c.digits, _digits);
c.length = _size;
return c;
}
inf_int operator*(const inf_int& a, const inf_int& b){
inf_int c;
for(unsigned int i = 0; i < a.length; ++i){
// traverse multiplicand
for(unsigned int j = 0; j < b.length; ++j){
// traverse multiplier
c.Add((a.digits[i] - '0') * (b.digits[j] - '0'), j + i + 1);
// multiplicand와 multiplier의 한 자리수씩 곱한 결과 Add
}
}
a.thesign == b.thesign ? c.thesign = true : c.thesign = false;
// 이항 부호가 같다면 true, 다르다면 false
return c;
}
inf_int operator/(const inf_int& a, const inf_int& b){
inf_int c;
// ZERO-Division
if(b.length == 1 && b.digits[0] == '0'){
c.digits = new char[4];
c.digits[0] = 'N';
c.digits[1] = 'a';
c.digits[2] = 'N';
c.digits[3] = '\0';
c.length = 3;
c.thesign = true;
return c;
}
// 제수의 길이가 피제수의 길이보다 길면, 몫을 '0'로 반환한다.
// 예) 4567 / 23456 = 0 (나머지 : 4567)
if(a.length < b.length){
return c;
}else if(a.length == b.length){
// a, b 양수로 바꿔줌
inf_int dividend(a);
inf_int divisor(b);
dividend.thesign = true;
divisor.thesign = true;
if(dividend < divisor){
// 예) 4567 / 4568 = 0 (나머지 : 4567)
return c;
}else{
int subQ = 0;
// 예) -4567 / 1111 = -4 (나머지 : -123)
// 4567 / 1111 먼저 계산하고 부호 처리
// 몫이 1의 자리만 나온다. 피제수에서 제수를 뺄 수 있을만큼 빼고, 뺀 횟수만큼 Add 함수를 통해 카운트해준다.
while(dividend > divisor || dividend == divisor){
dividend = dividend - divisor;
subQ++;
}
c = inf_int(subQ);
c.length = 1;
c.thesign = a.thesign == b.thesign;
return c;
}
}else{
// 제수를 지속적으로 빼줄 가변적 피제수
// ex) 456789 / 1111
// q -> 345689, 234589, 123489, 11189, 79로 변화
inf_int dividend(a);
dividend.thesign = true;
char buf[100000];
int resultLength = 0;
for(int i = a.length - b.length + 1; i >= 1; i--){
// ex) 456789 / 1111
// divisor -> 111100, 11110
inf_int divisor = b * inf_int(10).pow(i - 1);
divisor.thesign = true;
int subQ = 0;
while(dividend > divisor || dividend == divisor){
dividend = dividend - divisor;
subQ++;
}
// 첫번째로 0이 나오면 건너뛰고
// 아니면 '0'을 버퍼에 넣어줌
if (subQ == 0 && resultLength == 0)
continue;
// 각 자리 몫이 나오면, 해당 자리에 넣어줌.
buf[resultLength++] = subQ + '0';
}
buf[resultLength] = '\0';
c = inf_int(buf);
c.length = resultLength;
c.thesign = a.thesign == b.thesign;
return c;
}
}
inf_int operator%(const inf_int& a, const inf_int& b){
inf_int c;
// a / b == Q (Remainder c)
// a == b * Q + c
// c == a - b * Q
// c == a - b * (a / b)
c = a - (b * (a / b));
if(c.digits[0] == '\0')
return inf_int();
// 나머지의 부호는 '=' 연산에서 처리
return c;
}
ostream& operator<<(ostream& out, const inf_int& a){
if(!a.thesign){
out << '-';
}
for(int i = a.length - 1; i >= 0; i--){
out << a.digits[i];
}
return out;
}
void inf_int::Add(const int num, const unsigned int index){
// a의 index 자리수에 n을 더한다. 0<=n<=9, ex) a가 82일때, Add(a, 36, 2)의 결과는 442
if(this->length < index){
this->digits = (char*)realloc(this->digits, index + 1);
if(this->digits == nullptr){
// 할당 실패 예외처리
cout << "Memory reallocation failed, the program will terminate." << endl;
exit(0);
}
this->length = index; // 길이 지정
this->digits[this->length] = '\0'; // 널문자 삽입
}
if(this->digits[index - 1] < '0'){
// 연산 전에 '0'보다 작은 아스키값인 경우 0으로 채움. 쓰여지지 않았던 새로운 자리수일 경우 발생
this->digits[index - 1] = '0';
}
// 값 연산
int product = (this->digits[index - 1] - '0') + num;
if(product > 9){
// 자리올림이 발생하는 경우
int carry = product / 10; // carry
int remainder = product % 10; // remainder
this->digits[index - 1] = (char)(remainder + 48);
// remainder를 (아스키값) 48 더해 char로 변환해 현재 자릿수에 삽입
Add(carry, index + 1);
// carry는 다시한번 Add 호출
}else{
this->digits[index - 1] = (char)(product + 48);
// 자리올림 발생하지 않는다면, product를 char로 변환해 바로 삽입
}
}
void inf_int::Add(const char num, const unsigned int index){
// a의 index 자리수에 n을 더한다. 0<=n<=9, ex) a가 391일때, Add(a, 2, 2)의 결과는 411
if(this->length < index){
this->digits = (char*)realloc(this->digits, index + 1);
if(this->digits == nullptr){
// 할당 실패 예외처리
cout << "Memory reallocation failed, the program will terminate." << endl;
exit(0);
}
this->length = index; // 길이 지정
this->digits[this->length] = '\0'; // 널문자 삽입
}
if(this->digits[index - 1] < '0'){
// 연산 전에 '0'보다 작은 아스키값인 경우 0으로 채움. 쓰여지지 않았던 새로운 자리수일 경우 발생
this->digits[index - 1] = '0';
}
this->digits[index - 1] += num - '0'; // 값 연산
if(this->digits[index - 1] > '9'){
// 자리올림이 발생할 경우
this->digits[index - 1] -= 10; // 현재 자릿수에서 (아스키값) 10을 빼고
Add('1', index + 1); // 윗자리에 1을 더한다
}
}
void inf_int::Sub(const char num, const unsigned int index){
// a의 index 자리수에 n을 뺀다. 0<=n<=9, ex) a가 391일때, Sub(a, 2, 2)의 결과는 371
if(this->length < index){
this->digits = (char*)realloc(this->digits, index + 1);
if(this->digits == nullptr){
// 할당 실패 예외처리
cout << "Memory reallocation failed, the program will terminate." << endl;
exit(0);
}
this->length = index; // 길이 지정
this->digits[this->length] = '\0'; // 널문자 삽입
}
if(this->digits[index - 1] < '0'){
// 연산 전에 '0'보다 작은 아스키값인 경우 0으로 채움. 쓰여지지 않았던 새로운 자리수일 경우 발생
this->digits[index - 1] = '0';
}
this->digits[index - 1] -= num - '0'; // 값 연산 (빼기)
if(this->digits[index - 1] < '0'){
// 자리내림이 발생할 경우
this->digits[index - 1] += 10; // 현재 자릿수에서 (아스키값) 10을 더하고
Sub('1', index + 1); // 윗자리에 1을 뺀다.
}
if(this->digits[this->length - 1] == '0'){
// 자리수가 감소하는 경우 (가장 높은 자리수의 아스키값이 '0')
this->digits = (char*)realloc(this->digits, this->length); // 아스키값이 '0'인 앞자리 제거를 위해 재할당
if(this->digits == NULL){
// 할당 실패 예외처리
cout << "Memory reallocation failed, the program will terminate." << endl;
exit(0);
}
this->length = index - 1; // 길이 재지정 (1 감소)
}
}
inf_int inf_int::subInfInt(const unsigned int startIndex, const unsigned int endIndex) {
/**
* @brief return sub inf_int within index (likewise substr() of string),
* thesign is same with parent inf_int
* index starts with 1 (king received)
*
* @param startIndex
* @param endIndex
* @return sub inf_int within index (likewise substr() of string)
*/
// ex) new inf_int('12345').subInfInt(2,4) == new inf_int('234')
unsigned int _size = endIndex - startIndex + 1;
inf_int temp(*this);
string str = temp.digits;
str = str.substr(startIndex - 1, _size);
temp.digits = new char[_size];
strcpy(temp.digits, str.c_str());
temp.length = _size;
temp.thesign = this->thesign;
return temp;
}
inf_int inf_int::pow(const unsigned int exponent){
inf_int result(1);
for(int i = 0; i < exponent; i++){
result = result * (*this);
}
return result;
}
string inf_int::getResultChar(){
string returnVal = "";
if(!this->thesign){
returnVal += '-';
}
for(int i = this->length - 1; i >= 0; i--){
returnVal += this->digits[i];
}
return returnVal;
}