摘要: 1 #include <cstring> 2 #include <cstdio> 3 #include <iostream> 4 #include <cmath> 5 using namespace std; 6 char anum[1100],bnum[1100],ans[1100]; 7 int cs,i,j,len,t; 8 void swap(char &a,char &b){ 9 char temp=a;a=b;b=temp;10 }11 ///非负大整数乘法,时间复杂度为(2*len)^2,空间复杂度为2*len12 阅读全文
posted @ 2012-08-23 21:13 qijinbiao1 阅读(225) 评论(0) 推荐(0) 编辑