13.大整数/高精度运算重难点剖析

1.大整数的储存

如何储存:

struct bigshu{  //定义一个结构体 来储存大整数
	int d[1000];
	int len;
	
	bigshu()  //构造函数 →初始化 
	{
		memset(d,0,