-
Notifications
You must be signed in to change notification settings - Fork 3
/
Bint.h
758 lines (643 loc) · 15.8 KB
/
Bint.h
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
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
# include<stdio.h>
# include<stdlib.h>
# include<string.h>
# include<math.h>
# include <assert.h>
/******************************************************************
关于 使用char表示一个十进制数有关的一些宏定义
*******************************************************************/
#define ASCII_NUM_9 57
#define ASCII_NUM_0 48
#define POS 1
#define NEG 0
#define Fix(n) ((n)-ASCII_NUM_0)
#define NOT_NUM 0x88
/******************************************************************
一个大整数最长的位数
*******************************************************************/
#ifndef MAX_BIT_LEN
#define MAX_BIT_LEN 500
#endif
/******************************************************************
数据结构定义
*******************************************************************/
typedef char bitDec;
typedef struct intSave{
bitDec numer[MAX_BIT_LEN];//十进制数字
char sign;//符号位
unsigned long long len; //长度
}BINT_t;
/******************************************************************
函数声明
*******************************************************************/
//交互
BINT_t* Bint_input(char hint[]);
void Bint_output(BINT_t* Bint);
//简化使用定义
#define BintGet(c) (Bint_input((c)))
#define BintShow(b) (Bint_output((b)))
//无符号加减
BINT_t* Bint_Unsigned_ADD(BINT_t* op1,BINT_t* op2);
BINT_t* Bint_Unsigned_SUB(BINT_t* op1,BINT_t* op2);
//有符号加减
BINT_t* Bint_ADD(BINT_t* op1,BINT_t* op2);
BINT_t* Bint_SUB(BINT_t* op1,BINT_t* op2);
//乘法 除法
BINT_t* Bint_MUL(BINT_t* op1,BINT_t* op2);
BINT_t* Bint_DIV(BINT_t* op1,BINT_t* op2);
//模余
BINT_t* Bint_MOD(BINT_t* op1,BINT_t* op2);
//////////////////////////////////具体函数//////////////////////////////////////
// 包括 无符号加减 有符号加减 乘除 模余 //
///////////////////////////////////////////////////////////////////////////////
/******************************************************
* Des: 从用户输入获得一个大整数结构
* @Argu:字符串 [提示信息]
* Returns:指针 大整数结构
*******************************************************/
BINT_t* Bint_input(char hint[]){
//输入的缓存
char input[MAX_BIT_LEN+1];
//大数结构数组
BINT_t* ret= (BINT_t*)malloc(sizeof(BINT_t));
//交互
printf("[%s] 请输入一个大整数(%d位以内)\n",hint,MAX_BIT_LEN);
scanf("%s",input);
//游标 计算长度
char* p =input;
/*符号判断*/
switch(*p){
case '-':ret->sign=NEG;p++;break;
case '+':ret->sign=POS;p++;break;
default: ret->sign=POS;
}
/*计算长度并赋值*/
int len_cnt=0;
char begin_flag=1;
while(*p!='\0'){
if (*p>ASCII_NUM_9||*p<ASCII_NUM_0){
printf(":::输入错误 非数字\n");
free(ret);
return NULL;
}else if(*p==ASCII_NUM_0&&begin_flag) {
p++;
continue;
}else{
begin_flag=0;
ret->numer[len_cnt]=Fix(*p);
p++;
len_cnt++;
}
}
//全为0
if(*p=='\0'&&begin_flag==1) {
ret->numer[0]=0;
ret->len=len_cnt=1;
}
//置len位
ret->len=len_cnt;
//设置剩余的为0x88 -120
memset(&(ret->numer[len_cnt]),NOT_NUM,MAX_BIT_LEN-len_cnt);
#ifdef _DEBUG
for(int i=0;i<ret->len;i++){
printf("%d ",ret->numer[i]);}
printf("\nlen:%d",ret->len);
printf(" sign:%d\n",ret->sign);
#endif
return ret;
}
/******************************************************
* Des: 把BINT转化为数字形式输出
* @Argu:BINT_t* 要输出的数字
* @Returns:void
*******************************************************/
void Bint_output(BINT_t* Bint){
if(Bint->sign==NEG){
printf("-");
}
long long i;
for(i=0;i<Bint->len;i++){
printf("%d",Bint->numer[i]);
}
printf("\n");
}
/******************************************************
* Des: 无符号的加法
* @Argu:BINT_t* 加数
* BINT_t* 加数
* @Returns: BINT* 相加后的结果 sign 默认为正
*******************************************************/
BINT_t* Bint_Unsigned_ADD(BINT_t* op1,BINT_t* op2){
unsigned long long maxLen,rstLen,gap;
BINT_t * rst,*L,*S;
bitDec * output;
assert(op1!=NULL&&op2!=NULL);
//获得最大长度 间距
maxLen=(op1->len >op2->len)?op1->len:op2->len;
gap=abs(op1->len - op2->len);
//最长与最短指针
L=maxLen==op1->len?op1:op2;
S=maxLen==op1->len?op2:op1;
//结果 结构
rst=(BINT_t*)malloc(sizeof(BINT_t));
//结果缓存数组 留一位作为进位预留
rstLen=maxLen+1;
output=(bitDec*)malloc(sizeof(bitDec)*rstLen);
//首位 作为进位预留
output[0]=0;
//非进位相加
long long i;
for(i=0;i<gap;i++){
output[i+1]=L->numer[i];
}
for(i=gap;i<maxLen;i++){
//rst[i]=l[i]+s[i-gap]
output[i+1]=L->numer[i]+S->numer[i-gap];
}
#ifdef _DEBUG
printf("output: ");
for(i=0;i<maxLen+1;i++){
printf("%d ",output[i]);}
printf("\n");
#endif
//循环进位处理
for(i=maxLen;i>0;i--){
if(output[i]>=10){
output[i]-=10;
output[i-1]+=1;
}
}
//首位0判断
if(output[0]==0){
output++;
rstLen--;
}
//输出赋值
memcpy(rst->numer,output,rstLen);
memset(&(rst->numer[rstLen]),NOT_NUM,MAX_BIT_LEN-rstLen);
rst->sign=POS;//符号位为正
rst->len=rstLen;
//释放局部资源
free(output);
#ifdef _DEBUG
printf("无符号加法结果:\n");
for(i=0;i<rst->len;i++){
printf("%d ",rst->numer[i]);}
printf("\nsign:%d len:%d\n",rst->sign,rst->len);
#endif
return rst;
}
/******************************************************
* Des: 无符号 减法
* @Argu:BINT_t* op1被减数 op2减数
* @Returns:BINT_t 相加后的结果 符号位依据结果而定
*******************************************************/
BINT_t* Bint_Unsigned_SUB(BINT_t* op1,BINT_t* op2){
unsigned long long maxLen=0,gap,Zero_cnt=0;
BINT_t * rst,*L,*S;
bitDec * output;
assert(op1!=NULL&&op2!=NULL);
//获得最大长度 间距
maxLen=(op1->len >op2->len)?op1->len:op2->len;
gap=abs(op1->len - op2->len);
//最长与最短指针
L=maxLen==op1->len?op1:op2;
S=maxLen==op1->len?op2:op1;
//结果 结构
rst=(BINT_t*)malloc(sizeof(BINT_t));
//结果缓存数组
output=(bitDec*)malloc(sizeof(bitDec)*(maxLen));
long long i,j;
for(i=0;i<gap;i++){
output[i]=L->numer[i];
}
for(i=gap;i<maxLen;i++){
//rst[i]=l[i]-s[i-gap]
output[i]=L->numer[i]-S->numer[i-gap];
}
//循环进位处理
for(i=maxLen-1;i>0;i--){
if(output[i]<0){
output[i]+=10;
output[i-1]-=1;
}
}
//首位0统计
for(i=0;output[i]==0&&i<maxLen;i++){
Zero_cnt++;
}
//全为0
if(Zero_cnt==maxLen){
//输出0
rst->numer[0]=0;
memset(&(rst->numer[1]),NOT_NUM,MAX_BIT_LEN-1);
rst->len=1;
} else{
for(i=Zero_cnt,j=0;i<maxLen;i++,j++){
rst->numer[j]=output[i];
}
//memcpy(rst->numer,&output[Zero_cnt],maxLen-Zero_cnt);
memset(&(rst->numer[j]),NOT_NUM,MAX_BIT_LEN-maxLen+Zero_cnt);
rst->len=maxLen-Zero_cnt;
}
//符号位赋值
rst->sign= L==op1? POS:NEG;
//释放局部资源
free(output);
#ifdef _DEBUG
printf("无符号减法结果: \n");
for(i=0;i<rst->len ;i++){
printf("%d ",rst->numer[i]);}
printf("\nsign:%d len:%d \n",rst->sign,rst->len);
#endif
return rst;
}
/******************************************************
* Des: 带符号 大整数加法
* @Argu: BINT_t*
* BINT_t* 要相加的两个大整数
* @Returns: BINT_t* 加后的结果
*******************************************************/
BINT_t* Bint_ADD(BINT_t* op1,BINT_t* op2){
BINT_t * rst;
assert(op1!=NULL&&op2!=NULL);
if(op1->sign==POS&&op2->sign==POS){
rst=Bint_Unsigned_ADD(op1,op2);
}else if(op1->sign==POS&&op2->sign==NEG){
rst=Bint_Unsigned_SUB(op1,op2);
}else if(op1->sign==NEG&&op2->sign==POS){
rst=Bint_Unsigned_SUB(op2,op1);
}else if(op1->sign==NEG&&op2->sign==NEG){
rst=Bint_Unsigned_ADD(op1,op2);
rst->sign=NEG;
}
#ifdef _DEBUG
printf("有符号加法结果: \n");
for(int i=0;i<rst->len ;i++){
printf("%d ",rst->numer[i]);}
printf("\nsign:%d len:%d \n",rst->sign,rst->len);
#endif
return rst;
}
/******************************************************
* Des: 大整数减法 op1-op2
* @Argu: BINT_t* 被减数
* BINT_t* 减数
* @Returns:BINT_t* 结果
*******************************************************/
BINT_t* Bint_SUB(BINT_t* op1,BINT_t* op2){
BINT_t * rst;
assert(op1!=NULL&&op2!=NULL);
if(op1->sign==POS&&op2->sign==POS){
rst=Bint_Unsigned_SUB(op1,op2);
}else if(op1->sign==POS&&op2->sign==NEG){
rst=Bint_Unsigned_ADD(op1,op2);
}else if(op1->sign==NEG&&op2->sign==POS){
rst=Bint_Unsigned_ADD(op1,op2);
rst->sign=NEG;
}else if(op1->sign==NEG&&op2->sign==NEG){
rst=Bint_Unsigned_SUB(op2,op1);
}
#ifdef _DEBUG
printf("有符号减法结果: \n");
for(int i=0;i<rst->len ;i++){
printf("%d ",rst->numer[i]);}
printf("\nsign:%d len:%d \n",rst->sign,rst->len);
#endif
return rst;
}
/******************************************************
* Des: 大整数乘法
* @Argu: BINT_t* op1 op2 两个乘数
* @Returns:BINT_t* 乘法结果
*******************************************************/
BINT_t* Bint_MUL(BINT_t* op1,BINT_t* op2){
unsigned long long maxLen,minLen,rstLen;
BINT_t * rst,*L,*S;
bitDec * output;
long long i,j;
assert(op1!=NULL&&op2!=NULL);
//获得最长 最短长度
maxLen=(op1->len >op2->len)?op1->len:op2->len;
minLen=(op1->len==maxLen)?op2->len:op1->len;
//结果长度 预留一位进位
rstLen=maxLen+minLen;
#ifdef _DEBUG
printf("maxlen:%d\t",maxLen);
printf("minlen:%d\t",minLen);
printf("rstlen:%d\n",rstLen);
#endif
//最长与最短指针
L=maxLen==op1->len?op1:op2;
S=maxLen==op1->len?op2:op1;
//结果 结构
rst=(BINT_t*)malloc(sizeof(BINT_t));
//结果缓存数组
output=(bitDec*)malloc(sizeof(bitDec)*(rstLen));
memset(output,0,rstLen);
#ifdef _DEBUG
printf("output初始化为:");
for(int k=0;k<rstLen;k++) printf("%d ",output[k]);
printf("\n");
#endif
for(i=minLen-1;i>=0;i--){
//非进制
for(j=maxLen-1;j>=0;j--){
output[i+j+1] +=L->numer[j]*S->numer[i];
}
#ifdef _DEBUG
printf("[%d]:",i);
for(int k=0;k<rstLen;k++) printf("%2d ",output[k]);
printf("\n");
#endif
// 进位
for(j=maxLen+i;j>i;j--) {
output[j-1]+=output[j]/10;
output[j]=output[j]%10;
}
#ifdef _DEBUG
printf("[F]:",i);
for(int k=0;k<rstLen;k++) printf("%2d ",output[k]);
printf("\n\n");
#endif
}
//预留首进位判断
if(output[0]==0){
rstLen--;
output++;
}
//赋值给rst
memcpy(rst->numer,output,rstLen);
memset(&(rst->numer[rstLen]),NOT_NUM,MAX_BIT_LEN-rstLen);
rst->sign=(op1->sign==op2->sign)?POS:NEG;
rst->len=rstLen;
//释放局部资源
free(output);
#ifdef _DEBUG
printf("乘法结果: \n");
for(int k=0;k<rst->len ;k++){
printf("%d ",rst->numer[k]);}
printf("\nsign:%d len:%d \n",rst->sign,rst->len);
#endif
return rst;
}
/******************************************************
* Des: 大整数除法
* @Argu: BINT_t* op1[被除数] op2[除数]
* @Returns:BINT_t* 结果 取整
*******************************************************/
BINT_t* Bint_DIV(BINT_t* op1,BINT_t* op2){
unsigned long long rstLen,len1,len2;
BINT_t * rst;
bitDec * output,*subc;
long long i,j,k;
char s0_flag=0;
assert(op1!=NULL&&op2!=NULL);
if(op1->len<op2->len){
printf(":::提示,被除数小于除数\n");
//返回0
rst=(BINT_t *)malloc(sizeof(BINT_t));
rst->numer[0]=0;
memset(&(rst->numer[1]),NOT_NUM,MAX_BIT_LEN-1);
rst->sign=POS;
rst->len=1;
#ifdef _DEBUG
printf("模余结果:\n");
for(i=0;i<rst->len;i++){
printf("%d ",rst->numer[i]);}
printf("\nsign:%d len:%d\n",rst->sign,rst->len);
#endif
return rst;
}
//结果长度 同时预留一个进位
rstLen=op1->len-op2->len+1;
len1=op1->len;
len2=op2->len;
//结果 结构
rst=(BINT_t*)malloc(sizeof(BINT_t));
//结果缓存数组
output=(bitDec*)malloc(sizeof(bitDec)*(rstLen));
memset(output,0,rstLen);
//相减缓存
subc=(bitDec*)malloc(sizeof(bitDec)*(len2+1));
memset(subc,0,len2+1);
for(i=0;i<rstLen;i++){
if(i==0){
//第一次取前从op1取len2个数 subc首位为0
for(j=0;j<len2;j++){
subc[j+1]=op1->numer[j];
}
}
else{
//第二次开始
//前len2个移位并加回
for(j=0;j<len2;j++){
subc[j]=subc[j+1]+op2->numer[j];
}
//补充一个进来
subc[len2]=op1->numer[i+len2-1];
}
#ifdef _DEBUG
printf("[SUBC]:");
for(int m=0;m<len2+1;m++)printf("%d ",subc[m]);
printf("\n");
#endif
//1-10试减
for(j=1;j<=10;j++){
//减法
for(k=0;k<len2;k++){
subc[k+1]=subc[k+1]-op2->numer[k];
}
//小于0判断
s0_flag=0; //是否小于0
for(k=0;k<len2+1;k++) {
//第一个非零数为负数 则一定为负数
if(subc[k]<0){
s0_flag=1;
break;
}
//第一个非零数为正数 则一定为正数
else if(subc[k]>0){
break;
}
}
#ifdef _DEBUG
printf("[%d]:",j);
for(int m=0;m<len2+1;m++)printf("%d ",subc[m]);
printf("\n");
#endif
//小于0 写output
if(s0_flag){
output[i]=j-1;
break;
}
//否则 负数进制
for(k=len2;k>0;k--) {
if(subc[k]<0){
subc[k]+=10;
subc[k-1]--;
}
}
}
#ifdef _DEBUG
printf("[output]:");
for(int m=0;m<rstLen;m++)printf("%d ",output[m]);
printf("\n");
#endif
}
//结果首位判断
if(output[0]==0){
output++;
rstLen--;
}
//写出
memcpy(rst->numer,output,rstLen);
memset(&(rst->numer[rstLen]),NOT_NUM,MAX_BIT_LEN-rstLen);
rst->sign=(op1->sign==op2->sign) ?POS:NEG;
rst->len=rstLen;
//释放局部资源
free(output);
free(subc);
#ifdef _DEBUG
printf("整除结果:\n");
for(i=0;i<rst->len;i++){
printf("%d ",rst->numer[i]);}
printf("\nsign:%d len:%d\n",rst->sign,rst->len);
#endif
return rst;
}
/******************************************************
* Des: 大整数模余
* @Argu:BINT_t* op1 被除数 op2 除数
* @Returns:BINT_t* 模余结果
*******************************************************/
BINT_t* Bint_MOD(BINT_t* op1,BINT_t* op2){
unsigned long long rstLen,len1,len2,rLen;
BINT_t * rst;
bitDec *subc,*p;
long long i,j,k;
char s0_flag=0;
assert(op1!=NULL&&op2!=NULL);
if(op1->len<op2->len){
printf(":::提示,被除数小于除数\n");
//返回op1的赋值
rst=(BINT_t *)malloc(sizeof(BINT_t));
memcpy(rst->numer,op1->numer,MAX_BIT_LEN);
rst->sign=op1->sign;
rst->len=op1->len;
#ifdef _DEBUG
printf("模余结果:\n");
for(i=0;i<rst->len;i++){
printf("%d ",rst->numer[i]);}
printf("\nsign:%d len:%d\n",rst->sign,rst->len);
#endif
return rst;
}
//除数的结果长度 预留一个进位 同时也是循环的长度
rLen=op1->len-op2->len+1;
len1=op1->len;
len2=op2->len;
//余数长度
rstLen=len2+1;
//结果 结构
rst=(BINT_t*)malloc(sizeof(BINT_t));
//相减缓存 即模余缓存
subc=(bitDec*)malloc(sizeof(bitDec)*rstLen);
memset(subc,0,rstLen);
for(i=0;i<rLen;i++){
if(i==0){
//第一次取前从op1取len2个数 subc首位为0
for(j=0;j<len2;j++){
subc[j+1]=op1->numer[j];
}
}
else{
//第二次开始
//前len2个移位并加回
for(j=0;j<len2;j++){
subc[j]=subc[j+1]+op2->numer[j];
}
//补充一个进来
subc[len2]=op1->numer[i+len2-1];
}
#ifdef _DEBUG
printf("[SUBC]:");
for(int m=0;m<len2+1;m++)printf("%d ",subc[m]);
printf("\n");
#endif
//1-10试减
for(j=1;j<=10;j++){
//减法
for(k=0;k<len2;k++){
subc[k+1]=subc[k+1]-op2->numer[k];
}
//小于0判断
s0_flag=0; //是否小于0
for(k=0;k<rstLen;k++) {
//第一个非零数为负数 则一定为负数
if(subc[k]<0){
s0_flag=1;
break;
}
//第一个非零数为正数 则一定为正数
else if(subc[k]>0){
break;
}
}
#ifdef _DEBUG
printf("[%d]:",j);
for(int m=0;m<rstLen;m++)printf("%d ",subc[m]);
printf("\n");
#endif
//小于0 写output
if(s0_flag){
break;
}
//否则 负数进制
for(k=len2;k>0;k--) {
if(subc[k]<0){
subc[k]+=10;
subc[k-1]--;
}
}
}
}
//重加回
for(i=0;i<len2;i++){
subc[i+1]+=op2->numer[i];
}
#ifdef _DEBUG
printf("[subc]:");
for(int m=0;m<rstLen;m++)printf("%d ",subc[m]);
printf("\n");
#endif
//模余首位0判断
p=subc;
while(*p==0&&rstLen>0){
p++;
rstLen--;
}
//余数为0
if(rstLen==0){
//写出0
rst->numer[0]=0;
memset(&(rst->numer[1]),NOT_NUM,MAX_BIT_LEN-1);
rst->sign=POS;
rst->len=1;
} else{
//正常写出
memcpy(rst->numer,p,rstLen);
memset(&(rst->numer[rstLen]),NOT_NUM,MAX_BIT_LEN-rstLen);
rst->sign=(op1->sign==op2->sign) ?POS:NEG;
rst->len=rstLen;
}
//释放局部资源
free(subc);
#ifdef _DEBUG
printf("模余结果:\n");
for(i=0;i<rst->len;i++){
printf("%d ",rst->numer[i]);}
printf("\nsign:%d len:%d\n",rst->sign,rst->len);
#endif
return rst;
}