摘要: 大整数的构建 struct Bigint{ int fu;//表示数是否是负数 vector<int>s; Bigint(){ fu=0; } Bigint(const Bigint& a){ this->s=a.s; this->fu=a.fu; } Bigint(string str){ int 阅读全文