算法->大整数
ayu要努力
唯纯粹与热爱不可辜负。
展开
-
hdu1042 n! 大整数阶乘
其实就是大整数和非大整数相乘要注意更新数组长度#include#include#define maxn 40002using namespace std;static int sum[maxn];void cal(int n){ memset(sum,0,sizeof(sum)); int len = 1; sum[0] = 1; int ca = 0; for(int原创 2017-09-06 14:12:45 · 215 阅读 · 0 评论 -
hdu1002 大整数加法
有很多小细节需要注意:1.去除前导零2.翻转时的char与int变换#include#include#include#define maxn 1002using namespace std;char aa[maxn],bb[maxn];int sum[maxn],a[maxn],b[maxn];int main(){ int n; scanf("%d",&n); f原创 2017-09-06 13:52:07 · 327 阅读 · 0 评论