1. 堆栈总分布为: 2G
2G=2*1024*1024*1024B=2*10^9;
#define MAXBIT 100000
#define MAXLEAF 4000
typedef struct
{
int bit[MAXBIT];
int start;
} HCodeType; /* 编码结构体 */
sizeof( HCodeType )=400004;
HCodeType HuffCode[MAXLEAF], cd;
2*10^9>400004*4000
2*10^9<400004*6000