bign专题

LHL算法入门经典 5.2.3 高精度运算类bign

5.2.3 高精度运算类bign #include<stdio.h>#include<string.h>#include<math.h>const int maxn=1000;struct bign{int len,s[maxn];bign(){memset(s,0,sizeof(s));len=1;}//构造函数bign operator =(const char* num)//